[1/1] y2038: Fix support for 64-bit time on legacy ABIs

Message ID 20231111173236.568061-2-gael.portay@rtone.fr
State Committed
Commit baea60b33ec52e413cffad59d7dc54957377ac14
Headers
Series y2038: Fix support for 64-bit time on legacy ABIs |

Checks

Context Check Description
redhat-pt-bot/TryBot-apply_patch success Patch applied to master at the time it was sent
redhat-pt-bot/TryBot-32bit success Build for i686
linaro-tcwg-bot/tcwg_glibc_build--master-arm success Testing passed
linaro-tcwg-bot/tcwg_glibc_check--master-arm success Testing passed
linaro-tcwg-bot/tcwg_glibc_build--master-aarch64 success Testing passed
linaro-tcwg-bot/tcwg_glibc_check--master-aarch64 success Testing passed

Commit Message

Gaël PORTAY Nov. 11, 2023, 5:32 p.m. UTC
  This fixes a typo.
---
 io/sys/stat.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Comments

Adhemerval Zanella Netto Nov. 13, 2023, 2:41 p.m. UTC | #1
On 11/11/23 14:32, Gaël PORTAY wrote:
> This fixes a typo.

LGTM, thanks.

Reviewed-by: Adhemerval Zanella  <adhemerval.zanella@linaro.org>

> ---
>  io/sys/stat.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> 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
  

Patch

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