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: https://sourceware.org/git/?a=commitdiff_plain;h=baea60b33ec52e413cffad59d7dc54957377ac14;p=glibc.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 7b9368f9ec..eb280c1f06 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