From: Nicholas Nethercote Date: Wed, 20 May 2009 05:05:56 +0000 (+0000) Subject: Be more consistent with the spacing of syscall nums. X-Git-Tag: svn/VALGRIND_3_5_0~644 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b3c1b6028b69c16b4d429da346e71948a7156bc2;p=thirdparty%2Fvalgrind.git Be more consistent with the spacing of syscall nums. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@10027 --- diff --git a/coregrind/m_syswrap/syswrap-main.c b/coregrind/m_syswrap/syswrap-main.c index 3e589e3074..72153514be 100644 --- a/coregrind/m_syswrap/syswrap-main.c +++ b/coregrind/m_syswrap/syswrap-main.c @@ -1075,11 +1075,11 @@ void VG_(client_syscall) ( ThreadId tid ) Bool failed = sr_isError(sci->status.sres); Word tmp_sysno = sysno; if (failed) { - PRINT("SYSCALL[%d,%d](%5ld) ... [async] --> Failure(0x%llx)\n", + PRINT("SYSCALL[%d,%d](%3ld) ... [async] --> Failure(0x%llx)\n", VG_(getpid)(), tid, tmp_sysno, (ULong)sr_Err(sci->status.sres)); } else { - PRINT("SYSCALL[%d,%d](%5ld) ... [async] --> " + PRINT("SYSCALL[%d,%d](%3ld) ... [async] --> " "Success(0x%llx:0x%llx)\n", VG_(getpid)(), tid, tmp_sysno, (ULong)sr_ResHI(sci->status.sres),