From: Bart Van Assche Date: Sun, 23 Aug 2009 09:48:56 +0000 (+0000) Subject: Fixed a compiler warning. X-Git-Tag: svn/VALGRIND_3_6_0~535 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=81e7391bef967d3398ec51470ee8e6172c9481e1;p=thirdparty%2Fvalgrind.git Fixed a compiler warning. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@10859 --- diff --git a/coregrind/launcher-linux.c b/coregrind/launcher-linux.c index da236f87fd..3a55cca93c 100644 --- a/coregrind/launcher-linux.c +++ b/coregrind/launcher-linux.c @@ -135,7 +135,7 @@ static const char *select_platform(const char *clientname) 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;