aboutsummaryrefslogtreecommitdiff
path: root/string/argz-extract.c
diff options
context:
space:
mode:
Diffstat (limited to 'string/argz-extract.c')
-rw-r--r--string/argz-extract.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/string/argz-extract.c b/string/argz-extract.c
index e685da5..d73394a 100644
--- a/string/argz-extract.c
+++ b/string/argz-extract.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
@@ -30,6 +30,6 @@ __argz_extract (const char *argz, size_t len, char **argv)
argz += part_len + 1;
len -= part_len + 1;
}
- *argv = 0;
+ *argv = NULL;
}
weak_alias (__argz_extract, argz_extract)