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

Signed-off-by: Patrick Venture <venture@google.com>
Change-Id: I8f303e0c4a234cfe22b67170236a211564e37723
diff --git a/firmware_handler.cpp b/firmware_handler.cpp
index 26893e3..d72c5c7 100644
--- a/firmware_handler.cpp
+++ b/firmware_handler.cpp
@@ -152,8 +152,7 @@
  * of the data cached, and any additional pertinent information.  The
  * blob_state on the active files will return the state of the update.
  */
-bool FirmwareBlobHandler::stat(const std::string& path,
-                               struct blobs::BlobMeta* meta)
+bool FirmwareBlobHandler::stat(const std::string& path, blobs::BlobMeta* meta)
 {
     /* We know we support this path because canHandle is called ahead */
     if (path == verifyBlobId || path == activeImageBlobId ||
@@ -212,7 +211,7 @@
  * Return stat information on an open session.  It therefore must be an active
  * handle to either the active image or active hash.
  */
-bool FirmwareBlobHandler::stat(uint16_t session, struct blobs::BlobMeta* meta)
+bool FirmwareBlobHandler::stat(uint16_t session, blobs::BlobMeta* meta)
 {
     auto item = lookup.find(session);
     if (item == lookup.end())