Eliminate some compiler warnings

This commit is contained in:
Søren Sandmann Pedersen
2010-04-23 11:53:46 -04:00
parent a03172b11f
commit 73922a0af9
5 changed files with 20 additions and 12 deletions

View File

@ -36,7 +36,7 @@
#include "tracker.h"
#include "perf_counter.h"
#include "barrier.h"
#include "util.h"
#define d_print(...)
@ -262,7 +262,7 @@ on_read (gpointer data)
if (head < tail)
{
g_warning ("sysprof fails at ring buffers (head %llu, tail %llu\n", head, tail);
g_warning ("sysprof fails at ring buffers (head "FMT64", tail "FMT64"\n", head, tail);
tail = head;
}