|
From: <sv...@va...> - 2009-08-23 09:49:16
|
Author: bart
Date: 2009-08-23 10:48:56 +0100 (Sun, 23 Aug 2009)
New Revision: 10859
Log:
Fixed a compiler warning.
Modified:
trunk/coregrind/launcher-linux.c
Modified: trunk/coregrind/launcher-linux.c
===================================================================
--- trunk/coregrind/launcher-linux.c 2009-08-22 22:50:40 UTC (rev 10858)
+++ trunk/coregrind/launcher-linux.c 2009-08-23 09:48:56 UTC (rev 10859)
@@ -135,7 +135,7 @@
return NULL;
}
- VG_(debugLog)(2, "launcher", "read %d bytes from '%s'\n", n_bytes, clientname);
+ VG_(debugLog)(2, "launcher", "read %ld bytes from '%s'\n", n_bytes, clientname);
if (header[0] == '#' && header[1] == '!') {
int i = 2;
|