]> granicus.if.org Git - strace/blob - fchownat.c
tests: fix format warnings on x32
[strace] / fchownat.c
1 /*
2  * Copyright (c) 2014-2019 The strace developers.
3  * All rights reserved.
4  *
5  * SPDX-License-Identifier: LGPL-2.1-or-later
6  */
7
8 #include "defs.h"
9
10 SYS_FUNC(fchownat)
11 {
12         print_dirfd(tcp, tcp->u_arg[0]);
13         tprints(", ");
14         printpath(tcp, tcp->u_arg[1]);
15         printuid(", ", tcp->u_arg[2]);
16         printuid(", ", tcp->u_arg[3]);
17         tprints(", ");
18         printflags(at_flags, tcp->u_arg[4], "AT_???");
19
20         return RVAL_DECODED;
21 }