summaryrefslogtreecommitdiff
path: root/gdb/gdbtypes.h
diff options
context:
space:
mode:
authorsiddhesh <siddhesh>2012-09-27 08:57:14 +0000
committersiddhesh <siddhesh>2012-09-27 08:57:14 +0000
commit7ac6308af5ea6b4583930da73a2c184e0bbccc98 (patch)
tree18f3d3b38374fbbb40fa49ebb665d531d55e5242 /gdb/gdbtypes.h
parentd18178c13a938cd8a5e57475b5063fbe84aa02e4 (diff)
downloadgdb-7ac6308af5ea6b4583930da73a2c184e0bbccc98.tar.gz
* gdbtypes.c (lookup_array_range_type): Expand parameters
LOW_BOUND and HIGH_BOUND to LONGEST. (lookup_string_range_type): Likewise. * gdbtypes.h (lookup_array_range_type): Likewise. (lookup_string_range_type): Likewise. * valops.c (value_cstring): Expand parameter LEN to ssize_t. Expand HIGHBOUND to ssize_t. (value_string): Likewise. * value.h (value_cstring): Expand parameter LEN to ssize_t. (value_string): Likewise.
Diffstat (limited to 'gdb/gdbtypes.h')
-rw-r--r--gdb/gdbtypes.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/gdbtypes.h b/gdb/gdbtypes.h
index 73fcbb19652..59a6a657415 100644
--- a/gdb/gdbtypes.h
+++ b/gdb/gdbtypes.h
@@ -1526,11 +1526,11 @@ extern struct type *create_range_type (struct type *, struct type *, LONGEST,
extern struct type *create_array_type (struct type *, struct type *,
struct type *);
-extern struct type *lookup_array_range_type (struct type *, int, int);
+extern struct type *lookup_array_range_type (struct type *, LONGEST, LONGEST);
extern struct type *create_string_type (struct type *, struct type *,
struct type *);
-extern struct type *lookup_string_range_type (struct type *, int, int);
+extern struct type *lookup_string_range_type (struct type *, LONGEST, LONGEST);
extern struct type *create_set_type (struct type *, struct type *);