* elf.c (elfcore_grok_nto_status): Print tid as long.
authorJoel Brobecker <brobecker@gnat.com>
Tue, 29 Mar 2005 08:51:59 +0000 (08:51 +0000)
committerJoel Brobecker <brobecker@gnat.com>
Tue, 29 Mar 2005 08:51:59 +0000 (08:51 +0000)
        (elfcore_grok_nto_regs): Likewise.

bfd/ChangeLog
bfd/elf.c

index d8578384349b896083e2b1ff98f32ea51389b9f8..ee28ddbff3ed89dea885d628465457d439431c74 100644 (file)
@@ -1,3 +1,8 @@
+2005-03-29  Joel Brobecker  <brobecker@gnat.com>
+
+       * elf.c (elfcore_grok_nto_status): Print tid as long.
+       (elfcore_grok_nto_regs): Likewise.
+
 2005-03-29  Joel Brobecker  <brobecker@gnat.com>
 
         * irix-core.c: Remove some unnecessary prototypes.
index 22230f2c777af3e068be90e80b7af37cef82ad5c..4e2b21b415ee970c7ed0119fbf4bb1d7852b4bbe 100644 (file)
--- a/bfd/elf.c
+++ b/bfd/elf.c
@@ -7335,7 +7335,7 @@ elfcore_grok_nto_status (bfd *abfd, Elf_Internal_Note *note, pid_t *tid)
     elf_tdata (abfd)->core_lwpid = *tid;
 
   /* Make a ".qnx_core_status/%d" section.  */
-  sprintf (buf, ".qnx_core_status/%d", *tid);
+  sprintf (buf, ".qnx_core_status/%ld", (long) *tid);
 
   name = bfd_alloc (abfd, strlen (buf) + 1);
   if (name == NULL)
@@ -7365,7 +7365,7 @@ elfcore_grok_nto_regs (bfd *abfd,
   asection *sect;
 
   /* Make a "(base)/%d" section.  */
-  sprintf (buf, "%s/%d", base, tid);
+  sprintf (buf, "%s/%ld", base, (long) tid);
 
   name = bfd_alloc (abfd, strlen (buf) + 1);
   if (name == NULL)