diff options
Diffstat (limited to 'string/argz-delete.c')
-rw-r--r-- | string/argz-delete.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/string/argz-delete.c b/string/argz-delete.c index e513e46..9e3425c 100644 --- a/string/argz-delete.c +++ b/string/argz-delete.c @@ -1,5 +1,5 @@ /* Routines for dealing with '\0' separated arg vectors. - Copyright (C) 1995-2024 Free Software Foundation, Inc. + Copyright (C) 1995-2025 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -33,7 +33,7 @@ argz_delete (char **argz, size_t *argz_len, char *entry) if (*argz_len == 0) { free (*argz); - *argz = 0; + *argz = NULL; } } } |