]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
--trace-syscalls=yes wibble
authorNicholas Nethercote <n.nethercote@gmail.com>
Mon, 8 Nov 2004 13:02:53 +0000 (13:02 +0000)
committerNicholas Nethercote <n.nethercote@gmail.com>
Mon, 8 Nov 2004 13:02:53 +0000 (13:02 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2945

coregrind/vg_syscalls.c

index d48b9f6df9de4f18777e5b7ca12b831138bdc9fe..ea55f041d914274b9902a4a7a55faed409bcef0d 100644 (file)
@@ -1915,7 +1915,7 @@ POST(close)
 PRE(dup)
 {
    /* int dup(int oldfd); */
-   PRINT("dup ( %d ) --> ", arg1);
+   PRINT("dup ( %d )", arg1);
 }
 
 POST(dup)
@@ -4113,7 +4113,7 @@ PRE(write)
 PRE(creat)
 {
    /* int creat(const char *pathname, mode_t mode); */
-   PRINT("creat ( %p(%s), %d ) --> ",arg1,arg1,arg2);
+   PRINT("creat ( %p(%s), %d )",arg1,arg1,arg2);
    PRE_MEM_RASCIIZ( "creat(pathname)", arg1 );
 }