s/struct blobs::BlobMeta/blobs::BlobMeta/g

Signed-off-by: Patrick Venture <venture@google.com>
Change-Id: I8f303e0c4a234cfe22b67170236a211564e37723
diff --git a/firmware_handler.hpp b/firmware_handler.hpp
index 649b059..fd4f9ef 100644
--- a/firmware_handler.hpp
+++ b/firmware_handler.hpp
@@ -154,7 +154,7 @@
     bool canHandleBlob(const std::string& path) override;
     std::vector<std::string> getBlobIds() override;
     bool deleteBlob(const std::string& path) override;
-    bool stat(const std::string& path, struct blobs::BlobMeta* meta) override;
+    bool stat(const std::string& path, blobs::BlobMeta* meta) override;
     bool open(uint16_t session, uint16_t flags,
               const std::string& path) override;
     std::vector<uint8_t> read(uint16_t session, uint32_t offset,
@@ -165,7 +165,7 @@
                    const std::vector<uint8_t>& data) override;
     bool commit(uint16_t session, const std::vector<uint8_t>& data) override;
     bool close(uint16_t session) override;
-    bool stat(uint16_t session, struct blobs::BlobMeta* meta) override;
+    bool stat(uint16_t session, blobs::BlobMeta* meta) override;
     bool expire(uint16_t session) override;
 
     bool triggerVerification();