Skip to content
Snippets Groups Projects
Commit d6cd6c30 authored by Daniel Golle's avatar Daniel Golle
Browse files

adb: fix build on glibc systems

Recent changes to adb_walk_adb.c added use of 'PRIu64' which requires
to include inttypes.h on glibc systems.

Fixes: c5d8d286 ("adb: implement ADB_BLOCK_EXT flavor for large files")
parent bb9de380
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,7 @@
#include <stdio.h>
#include <unistd.h>
#include <inttypes.h>
#include "apk_adb.h"
#include "apk_applet.h"
#include "apk_print.h"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment