Edward O'Callaghan has submitted this change. ( https://review.coreboot.org/c/flashrom/+/36219 )
Change subject: usbdev.c: Add missing <inttypes.h> include ......................................................................
usbdev.c: Add missing <inttypes.h> include
Change-Id: Ie23612226a48d6732750f51547642da0a6257dd8 Signed-off-by: Edward O'Callaghan quasisec@chromium.org Reviewed-on: https://review.coreboot.org/c/flashrom/+/36219 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Nico Huber nico.h@gmx.de --- M usbdev.c 1 file changed, 1 insertion(+), 0 deletions(-)
Approvals: build bot (Jenkins): Verified Nico Huber: Looks good to me, approved
diff --git a/usbdev.c b/usbdev.c index 764ac04..846ed58 100644 --- a/usbdev.c +++ b/usbdev.c @@ -15,6 +15,7 @@ * GNU General Public License for more details. */
+#include <inttypes.h> #include <stdbool.h> #include <string.h> #include <libusb.h>