From 1da7940c77153881471f01d0510abb392aa164c5 Mon Sep 17 00:00:00 2001 From: "H.J. Lu" Date: Thu, 22 Mar 2012 10:02:57 -0700 Subject: [PATCH] Replace unsigned long with uint64_t --- ChangeLog | 5 +++++ sysdeps/x86_64/dl-tls.h | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 35afce925d..430e7d2c5d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2012-03-22 H.J. Lu + + * sysdeps/x86_64/dl-tls.h (dl_tls_index): Replace unsigned long + with uint64_t. + 2012-03-22 H.J. Lu * sysdeps/generic/ldsodefs.h (struct La_x32_regs): New forward diff --git a/sysdeps/x86_64/dl-tls.h b/sysdeps/x86_64/dl-tls.h index 4de5815605..56162ee64a 100644 --- a/sysdeps/x86_64/dl-tls.h +++ b/sysdeps/x86_64/dl-tls.h @@ -20,8 +20,8 @@ /* Type used for the representation of TLS information in the GOT. */ typedef struct dl_tls_index { - unsigned long int ti_module; - unsigned long int ti_offset; + uint64_t ti_module; + uint64_t ti_offset; } tls_index;