summaryrefslogtreecommitdiffstats
path: root/dev/ideviceheartbeat.c
diff options
context:
space:
mode:
Diffstat (limited to 'dev/ideviceheartbeat.c')
-rw-r--r--dev/ideviceheartbeat.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/dev/ideviceheartbeat.c b/dev/ideviceheartbeat.c
index fe2cdf3..c92ff90 100644
--- a/dev/ideviceheartbeat.c
+++ b/dev/ideviceheartbeat.c
@@ -21,6 +21,7 @@
21 21
22#include <stdio.h> 22#include <stdio.h>
23#include <string.h> 23#include <string.h>
24#include <inttypes.h>
24#include <signal.h> 25#include <signal.h>
25#include <stdlib.h> 26#include <stdlib.h>
26 27
@@ -129,7 +130,7 @@ int main(int argc, char *argv[])
129 plist_get_uint_val(node, &interval); 130 plist_get_uint_val(node, &interval);
130 } 131 }
131 132
132 printf("> marco: supports_sleepy_time %d, interval %llu\n", b, interval); 133 printf("> marco: supports_sleepy_time %d, interval %"PRIu64"\n", b, interval);
133 134
134 plist_free(message); 135 plist_free(message);
135 message = NULL; 136 message = NULL;