mirror of
https://https.git.savannah.gnu.org/git/findutils.git
synced 2026-01-26 15:39:06 +00:00
xargs: pacify GCC 13
* xargs/xargs.c: Ignore -Wanalyzer-fd-leak.
This commit is contained in:
parent
fc47dadea9
commit
2be229d3af
@ -70,6 +70,10 @@
|
||||
#include "gcc-function-attributes.h"
|
||||
#include "system.h"
|
||||
|
||||
/* GCC 13 misunderstands the dup2 trickery in this file. */
|
||||
#if 13 <= __GNUC__
|
||||
# pragma GCC diagnostic ignored "-Wanalyzer-fd-leak"
|
||||
#endif
|
||||
|
||||
#ifndef LONG_MAX
|
||||
# define LONG_MAX (~(1 << (sizeof (long) * 8 - 1)))
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user