diff options
| author | Steve Kondik <shade@chemlab.org> | 2010-12-28 03:15:19 -0500 |
|---|---|---|
| committer | Steve Kondik <shade@chemlab.org> | 2010-12-28 03:15:19 -0500 |
| commit | 98692753a1cd03752d4e9e0a69b1d997f65e21db (patch) | |
| tree | 49a0163a2cff70b7ce25bdc73e45ce546357e81b | |
| parent | efb3d04365c3e004d836ce66adff07b98b21b629 (diff) | |
| download | android_external_strace-gingerbread.tar.gz android_external_strace-gingerbread.tar.bz2 android_external_strace-gingerbread.zip | |
Change-Id: I6175761056b8926c0f88bbdf1fafc193548679a1
| -rw-r--r-- | bjm.c | 2 | ||||
| -rw-r--r-- | process.c | 2 | ||||
| -rw-r--r-- | signal.c | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -144,7 +144,7 @@ struct tcb *tcp; for (idx=0; idx<ret; idx++) { if (idx!=0) tprintf(","); - tprintf(mod); + tprintf("%s", mod); mod+=strlen(mod)+1; } free(data); @@ -1705,7 +1705,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]; } @@ -395,7 +395,7 @@ void printsignal(nr) int nr; { - tprintf(signame(nr)); + tprintf("%s", signame(nr)); } void |
