Diff between b5a5d2d81affbd38826c41dcefc9209b057e9a2e and 0e1473d188baa57226f08fbab1795e47da7a6768

Changed Files

File Additions Deletions Status
android/client/if-bt.c +2 -1 modified

Full Patch

diff --git a/android/client/if-bt.c b/android/client/if-bt.c
index 327fa86..b4312f0 100644
--- a/android/client/if-bt.c
+++ b/android/client/if-bt.c
@@ -16,6 +16,7 @@
  */
 
 #include <string.h>
+#include <inttypes.h>
 
 #include "if-main.h"
 #include "terminal.h"
@@ -365,7 +366,7 @@ static void *alarm_cb_p_data = NULL;
 
 static bool set_wake_alarm(uint64_t delay_millis, bool should_wake, alarm_cb cb, void *data)
 {
-	haltest_info("%s: delay %lu  should_wake %u cb %p data %p\n",
+	haltest_info("%s: delay %"PRIu64" should_wake %u cb %p data %p\n",
 				__func__, delay_millis, should_wake, cb, data);
 
 	/* TODO call alarm callback after specified delay */