aboutsummaryrefslogtreecommitdiff
path: root/gdb/findvar.c
diff options
context:
space:
mode:
authorJason Thorpe <thorpej@netbsd.org>2002-04-23 03:00:57 +0000
committerJason Thorpe <thorpej@netbsd.org>2002-04-23 03:00:57 +0000
commitbaa6f10b321f9eabc092fcdb26d2005638a8a16c (patch)
treef9b154b7432651e05988e6c75ac7605af71c7471 /gdb/findvar.c
parentb2c4da8122c59a96c83c1731d6c973cde730f670 (diff)
downloadgdb-baa6f10b321f9eabc092fcdb26d2005638a8a16c.zip
gdb-baa6f10b321f9eabc092fcdb26d2005638a8a16c.tar.gz
gdb-baa6f10b321f9eabc092fcdb26d2005638a8a16c.tar.bz2
* findvar.c (extract_signed_integer): Cast printf argument
to suppress format warning. (extract_unsigned_integer): Likewise. * infcmd.c (registers_info): Likewise. * top.c (get_prompt_1): Likewise. * valops.c (value_assign): Likewise. * valprint.c (print_decimal): Likewise.
Diffstat (limited to 'gdb/findvar.c')
-rw-r--r--gdb/findvar.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/findvar.c b/gdb/findvar.c
index 06ad498..0f116ed 100644
--- a/gdb/findvar.c
+++ b/gdb/findvar.c
@@ -57,7 +57,7 @@ extract_signed_integer (void *addr, int len)
if (len > (int) sizeof (LONGEST))
error ("\
That operation is not available on integers of more than %d bytes.",
- sizeof (LONGEST));
+ (int) sizeof (LONGEST));
/* Start at the most significant end of the integer, and work towards
the least significant. */
@@ -91,7 +91,7 @@ extract_unsigned_integer (void *addr, int len)
if (len > (int) sizeof (ULONGEST))
error ("\
That operation is not available on integers of more than %d bytes.",
- sizeof (ULONGEST));
+ (int) sizeof (ULONGEST));
/* Start at the most significant end of the integer, and work towards
the least significant. */