summaryrefslogtreecommitdiffstats
path: root/minadbd/services.c
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2015-02-25 07:07:18 +0100
committerDan Albert <danalbert@google.com>2015-02-25 07:07:18 +0100
commit8f6eb5c045896d13b411ab8906f9af8e2f258b5a (patch)
treef783ff7a4c4057ed7d1216e9d5ce674e8b6e5020 /minadbd/services.c
parentMerge "Delete unused functions from minzip." (diff)
downloadandroid_bootable_recovery-8f6eb5c045896d13b411ab8906f9af8e2f258b5a.tar
android_bootable_recovery-8f6eb5c045896d13b411ab8906f9af8e2f258b5a.tar.gz
android_bootable_recovery-8f6eb5c045896d13b411ab8906f9af8e2f258b5a.tar.bz2
android_bootable_recovery-8f6eb5c045896d13b411ab8906f9af8e2f258b5a.tar.lz
android_bootable_recovery-8f6eb5c045896d13b411ab8906f9af8e2f258b5a.tar.xz
android_bootable_recovery-8f6eb5c045896d13b411ab8906f9af8e2f258b5a.tar.zst
android_bootable_recovery-8f6eb5c045896d13b411ab8906f9af8e2f258b5a.zip
Diffstat (limited to 'minadbd/services.c')
-rw-r--r--minadbd/services.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/minadbd/services.c b/minadbd/services.c
index 357c222b4..7e419cc85 100644
--- a/minadbd/services.c
+++ b/minadbd/services.c
@@ -14,18 +14,19 @@
* limitations under the License.
*/
-#include <stdlib.h>
+#include <errno.h>
+#include <inttypes.h>
#include <stdio.h>
-#include <unistd.h>
+#include <stdlib.h>
#include <string.h>
-#include <errno.h>
+#include <unistd.h>
#include "sysdeps.h"
-#include "fdevent.h"
-#include "fuse_adb_provider.h"
#define TRACE_TAG TRACE_SERVICES
#include "adb.h"
+#include "fdevent.h"
+#include "fuse_adb_provider.h"
typedef struct stinfo stinfo;
@@ -52,7 +53,8 @@ static void sideload_host_service(int sfd, void* cookie)
s = adb_strtok_r(NULL, ":", &saveptr);
uint32_t block_size = strtoul(s, NULL, 10);
- printf("sideload-host file size %llu block size %lu\n", file_size, block_size);
+ printf("sideload-host file size %llu block size %" PRIu32 "\n", file_size,
+ block_size);
int result = run_adb_fuse(sfd, file_size, block_size);