diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2014-11-07 13:41:02 -0800 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2014-11-07 13:41:02 -0800 |
commit | 5a2cbcf4ce0f56e5f66aad3cd674f8c8edf428bf (patch) | |
tree | be46d1091b285936b57f60538012b7b21cee6218 /binutils | |
parent | 0115826241fc07d78fbd9709567b1c35fece4179 (diff) | |
download | fsf-binutils-gdb-5a2cbcf4ce0f56e5f66aad3cd674f8c8edf428bf.zip fsf-binutils-gdb-5a2cbcf4ce0f56e5f66aad3cd674f8c8edf428bf.tar.gz fsf-binutils-gdb-5a2cbcf4ce0f56e5f66aad3cd674f8c8edf428bf.tar.bz2 |
Cast time value to unsigned long to print
* readelf.c (process_dynamic_section): Cast time value to unsigned
long to print.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 5 | ||||
-rw-r--r-- | binutils/readelf.c | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index b0c6bb2..b1ef9fa 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +2014-11-07 H.J. Lu <hongjiu.lu@intel.com> + + * readelf.c (process_dynamic_section): Cast time value to unsigned + long to print. + 2014-11-07 Nick Clifton <nickc@redhat.com> PR binutils/17531 diff --git a/binutils/readelf.c b/binutils/readelf.c index 5bd3a4b..e13bef1 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -8880,7 +8880,8 @@ process_dynamic_section (FILE * file) tmp = gmtime (&atime); /* PR 17533 file: 041-1244816-0.004. */ if (tmp == NULL) - printf (_("<corrupt time val: %lx"), atime); + printf (_("<corrupt time val: %lx"), + (unsigned long) atime); else printf ("%04u-%02u-%02uT%02u:%02u:%02u\n", tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday, |