ada-typeprint.c (print_range): Initialize lo,hi for gcc -Wall.
authorDoug Evans <dje@google.com>
Mon, 18 Aug 2014 17:04:18 +0000 (10:04 -0700)
committerDoug Evans <dje@google.com>
Mon, 18 Aug 2014 17:04:18 +0000 (10:04 -0700)
* ada-typeprint.c (print_range): Initialize lo,hi for gcc -Wall.

gdb/ChangeLog
gdb/ada-typeprint.c

index c14fd5c..d8d427f 100644 (file)
@@ -1,3 +1,7 @@
+2014-08-18  Doug Evans  <dje@google.com>
+
+       * ada-typeprint.c (print_range): Initialize lo,hi for gcc -Wall.
+
 2014-08-18  Joel Brobecker  <brobecker@adacore.com>
 
        * ada-typeprint.c (type_is_full_subrange_of_target_type):
index 57c8d93..27bd1d1 100644 (file)
@@ -160,7 +160,7 @@ print_range (struct type *type, struct ui_file *stream,
       {
        struct type *target_type;
        volatile struct gdb_exception e;
-       LONGEST lo, hi;
+       LONGEST lo = 0, hi = 0; /* init for gcc -Wall */
 
        target_type = TYPE_TARGET_TYPE (type);
        if (target_type == NULL)