diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2021-04-14 17:52:18 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2021-04-14 17:52:18 +0200 |
commit | fe2d8065e3e3c251c054a30e9823977e20b5ab7c (patch) | |
tree | e020c35302c0fface2e39414cfae9f4ba6531b1c /libbb/xfuncs_printf.c | |
parent | ba9f9c2d2c57f6041c6c01ba7c0e8379a5f5d440 (diff) | |
download | busybox-w32-fe2d8065e3e3c251c054a30e9823977e20b5ab7c.tar.gz busybox-w32-fe2d8065e3e3c251c054a30e9823977e20b5ab7c.tar.bz2 busybox-w32-fe2d8065e3e3c251c054a30e9823977e20b5ab7c.zip |
fix gcc-11.0 warnings
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'libbb/xfuncs_printf.c')
-rw-r--r-- | libbb/xfuncs_printf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/xfuncs_printf.c b/libbb/xfuncs_printf.c index f0399ca45..d29acebcd 100644 --- a/libbb/xfuncs_printf.c +++ b/libbb/xfuncs_printf.c | |||
@@ -224,7 +224,7 @@ int FAST_FUNC rename_or_warn(const char *oldpath, const char *newpath) | |||
224 | return n; | 224 | return n; |
225 | } | 225 | } |
226 | 226 | ||
227 | void FAST_FUNC xpipe(int filedes[2]) | 227 | void FAST_FUNC xpipe(int *filedes) |
228 | { | 228 | { |
229 | if (pipe(filedes)) | 229 | if (pipe(filedes)) |
230 | bb_simple_perror_msg_and_die("can't create pipe"); | 230 | bb_simple_perror_msg_and_die("can't create pipe"); |