mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-02 12:53:33 +00:00
test/ptrace/scescx.c: fix printing of braces for syscalls without args
(cherry picked from commit 9a8eb5db55
)
This commit is contained in:
parent
371456b17b
commit
4e762fab70
@ -196,16 +196,17 @@ wait_info(int pid, int status, struct ptrace_lwpinfo *lwpinfo)
|
||||
(caddr_t)args, lwpinfo->pl_syscall_narg *
|
||||
sizeof(long));
|
||||
if (error == 0) {
|
||||
printf("(");
|
||||
for (i = 0; i < (int)lwpinfo->pl_syscall_narg;
|
||||
i++) {
|
||||
printf("%c%#lx", i == 0 ? '(' : ',',
|
||||
printf("%s%#lx", i == 0 ? "" : ",",
|
||||
args[i]);
|
||||
}
|
||||
printf(")");
|
||||
} else {
|
||||
fprintf(stderr, "PT_GET_SC_ARGS failed: %s",
|
||||
strerror(errno));
|
||||
}
|
||||
printf(")");
|
||||
free(args);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user