aboutsummaryrefslogtreecommitdiff
path: root/bfd/elf.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2005-03-06 02:02:15 +0000
committerAlan Modra <amodra@gmail.com>2005-03-06 02:02:15 +0000
commit1f17067849a227bd84836150540dad74606bb16c (patch)
tree06173aca5b5909bfe1dcbae3cec47e86aa8f05b7 /bfd/elf.c
parenta01ad9de048cae202c6e73fe6824b4ef7d16b046 (diff)
downloadgdb-1f17067849a227bd84836150540dad74606bb16c.zip
gdb-1f17067849a227bd84836150540dad74606bb16c.tar.gz
gdb-1f17067849a227bd84836150540dad74606bb16c.tar.bz2
* elf.c (elfcore_grok_win32pstatus): Warning fixes.
Diffstat (limited to 'bfd/elf.c')
-rw-r--r--bfd/elf.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/bfd/elf.c b/bfd/elf.c
index ef326f0..f8cc401 100644
--- 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);