From: Gaƫl PORTAY Date: Sat, 11 Nov 2023 17:32:36 +0000 (+0100) Subject: y2038: Fix support for 64-bit time on legacy ABIs X-Git-Tag: glibc-2.39~286 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=baea60b33ec52e413cffad59d7dc54957377ac14;p=thirdparty%2Fglibc.git y2038: Fix support for 64-bit time on legacy ABIs This fixes a typo. Reviewed-by: Adhemerval Zanella --- diff --git a/io/sys/stat.h b/io/sys/stat.h index 7b9368f9ec1..eb280c1f065 100644 --- a/io/sys/stat.h +++ b/io/sys/stat.h @@ -251,7 +251,7 @@ extern int __REDIRECT_NTH (fstat64, (int __fd, struct stat64 *__buf), __nonnull ((2)); # else # define stat64 __stat64_time64 -# define fstat64 __fstat64_time +# define fstat64 __fstat64_time64 # endif # endif #endif