diff options
author | Dmitry V. Levin <ldv@altlinux.org> | 2009-06-01 10:32:27 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 2009-06-02 16:45:41 -0700 |
commit | 6e1f9bf1dd67ae5ad4f33e98c8d45e10f3f802a9 (patch) | |
tree | 4e967c58b6d1ff962835d0dd034ba1d1214268b4 /process.c | |
parent | 9e948fefe0984a8fee90cd2555689e3e8e5037f6 (diff) | |
download | strace-rebase.tar.gz |
* bjm.c (sys_query_module): Fix format warning reported byrebase
gcc -Wformat-security.
* file.c (tprint_open_modes): Likewise.
* process.c (printargv): Likewise.
* signal.c (printsignal): Likewise.
Diffstat (limited to 'process.c')
-rw-r--r-- | process.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1794,7 +1794,7 @@ long addr; cp.p64 = cp.p32; if (cp.p64 == 0) break; - tprintf(sep); + tprintf("%s", sep); printstr(tcp, cp.p64, -1); addr += personality_wordsize[current_personality]; } |