decode_utimes: enclose timespec array in square brackets
* utimes.c (decode_utimes): enclose timespec array in square brackets instead of curly brackets.
This commit is contained in:
parent
9809e3ab0a
commit
e5fe1400c0
4
utimes.c
4
utimes.c
@ -9,14 +9,14 @@ decode_utimes(struct tcb *tcp, int offset, int special)
|
||||
if (tcp->u_arg[offset + 1] == 0)
|
||||
tprints("NULL");
|
||||
else {
|
||||
tprints("{");
|
||||
tprints("[");
|
||||
printtv_bitness(tcp, tcp->u_arg[offset + 1],
|
||||
BITNESS_CURRENT, special);
|
||||
tprints(", ");
|
||||
printtv_bitness(tcp, tcp->u_arg[offset + 1]
|
||||
+ sizeof(struct timeval),
|
||||
BITNESS_CURRENT, special);
|
||||
tprints("}");
|
||||
tprints("]");
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user