* elf.c (elfcore_grok_win32pstatus): Warning fixes.
authorAlan Modra <amodra@gmail.com>
Sun, 6 Mar 2005 02:02:15 +0000 (02:02 +0000)
committerAlan Modra <amodra@gmail.com>
Sun, 6 Mar 2005 02:02:15 +0000 (02:02 +0000)
bfd/ChangeLog
bfd/elf.c

index b3c231508f091df2ad4d7f614515895bb8718a19..d29f1e86a8eec14db6e74f5f524fbe72b86a268e 100644 (file)
@@ -1,3 +1,7 @@
+2005-03-06  Alan Modra  <amodra@bigpond.net.au>
+
+       * elf.c (elfcore_grok_win32pstatus): Warning fixes.
+
 2005-03-05  Alan Modra  <amodra@bigpond.net.au>
 
        * po/bfd.pot: Regenerate.
index ef326f03da8479ea99e853a935566cdc6f0d4da0..f8cc4011565b97e8eb167a2b9d79b6af27370116 100644 (file)
--- a/bfd/elf.c
+++ b/bfd/elf.c
@@ -7080,7 +7080,7 @@ elfcore_grok_win32pstatus (bfd *abfd, Elf_Internal_Note *note)
 
     case NOTE_INFO_THREAD:
       /* Make a ".reg/999" section.  */
-      sprintf (buf, ".reg/%d", pstatus.data.thread_info.tid);
+      sprintf (buf, ".reg/%ld", (long) pstatus.data.thread_info.tid);
 
       len = strlen (buf) + 1;
       name = bfd_alloc (abfd, len);
@@ -7107,7 +7107,8 @@ elfcore_grok_win32pstatus (bfd *abfd, Elf_Internal_Note *note)
 
     case NOTE_INFO_MODULE:
       /* Make a ".module/xxxxxxxx" section.  */
-      sprintf (buf, ".module/%08x", pstatus.data.module_info.base_address);
+      sprintf (buf, ".module/%08lx",
+              (long) pstatus.data.module_info.base_address);
 
       len = strlen (buf) + 1;
       name = bfd_alloc (abfd, len);