Fix compilation warnings
[lttv.git] / lttv / lttv / sync / event_matching_tcp.c
index 8d4d8e322c484d4b453b2c47ec1bdd266b12b49d..9ba8b63265463670db782c8dddb57b72f76890c3 100644 (file)
@@ -21,6 +21,7 @@
 #endif
 
 #include <errno.h>
+#include <inttypes.h>
 #include <stdlib.h>
 #include <string.h>
 #include <unistd.h>
@@ -645,7 +646,7 @@ static void writeMessagePoint(FILE* stream, const Message* const message)
                y= message->inE->cpuTime;
        }
 
-       fprintf(stream, "%20llu %20llu\n", x, y);
+       fprintf(stream, "%20" PRIu64 " %20" PRIu64 "\n", x, y);
 }
 
 
This page took 0.023539 seconds and 4 git commands to generate.