mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-08 17:42:12 +03:00
Silence most -Wzero-as-null-pointer-constant diagnostics
Replace 0 by NULL and {0} by {}. Omit a few cases that aren't so trivial to fix. Link: <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=117059> Link: <https://software.codidact.com/posts/292718/292759#answer-292759> Signed-off-by: Alejandro Colomar <alx@kernel.org>
This commit is contained in:
committed by
Adhemerval Zanella
parent
83d4b42ded
commit
53fcdf5f74
@@ -440,7 +440,7 @@ copy_one_file (const char *sname, const char *dname)
|
||||
if (dfd < 0)
|
||||
FAIL_EXIT1 ("unable to open %s for writing\n", dname);
|
||||
|
||||
xcopy_file_range (sfd, 0, dfd, 0, st.st_size, 0);
|
||||
xcopy_file_range (sfd, NULL, dfd, NULL, st.st_size, 0);
|
||||
|
||||
xclose (sfd);
|
||||
xclose (dfd);
|
||||
|
Reference in New Issue
Block a user