diff options
Diffstat (limited to 'string/strerror.c')
-rw-r--r-- | string/strerror.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/string/strerror.c b/string/strerror.c index 107d9d3..daabec8 100644 --- a/string/strerror.c +++ b/string/strerror.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-2024 Free Software Foundation, Inc. +/* Copyright (C) 1991-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 @@ -21,5 +21,5 @@ char * strerror (int errnum) { - return __strerror_l (errnum, __libc_tsd_get (locale_t, LOCALE)); + return __strerror_l (errnum, __libc_tsd_LOCALE); } |