Skip to content

Commit

Permalink
Replace unsigned long with uint64_t
Browse files Browse the repository at this point in the history
  • Loading branch information
H.J. Lu committed Mar 22, 2012
1 parent b749dbb commit 1da7940
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2012-03-22 H.J. Lu <hongjiu.lu@intel.com>

* sysdeps/x86_64/dl-tls.h (dl_tls_index): Replace unsigned long
with uint64_t.

2012-03-22 H.J. Lu <hongjiu.lu@intel.com>

* sysdeps/generic/ldsodefs.h (struct La_x32_regs): New forward
Expand Down
4 changes: 2 additions & 2 deletions sysdeps/x86_64/dl-tls.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;


Expand Down

0 comments on commit 1da7940

Please sign in to comment.