From a8356420078bb7e7580fe6c42818e20203c7cbfc Mon Sep 17 00:00:00 2001 From: Patrick Venture Date: Fri, 15 Mar 2019 21:16:33 -0700 Subject: blob_handler: fprintf tweak [src/ipmiblob/blob_handler.cpp:141]: (warning) %d in format string (no. 1) requires 'int' but the argument type is 'unsigned int'. Change-Id: I8e695a4656d47abe80396e1929b62b86421e761d Signed-off-by: Patrick Venture --- src/ipmiblob/blob_handler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ipmiblob/blob_handler.cpp') diff --git a/src/ipmiblob/blob_handler.cpp b/src/ipmiblob/blob_handler.cpp index 2ea927a..74ecd02 100644 --- a/src/ipmiblob/blob_handler.cpp +++ b/src/ipmiblob/blob_handler.cpp @@ -138,7 +138,7 @@ int BlobHandler::getBlobCount() return 0; } - std::fprintf(stderr, "BLOB Count: %d\n", count); + std::fprintf(stderr, "BLOB Count: %u\n", count); return count; } -- cgit v1.2.3