* c-valprint.c (c_val_print): Fix printing for arrays defined
authorDawn Perchik <dawn@cygnus>
Wed, 12 Feb 1997 10:49:20 +0000 (10:49 +0000)
committerDawn Perchik <dawn@cygnus>
Wed, 12 Feb 1997 10:49:20 +0000 (10:49 +0000)
        with 0 length.  A sticky tag caused this fix from
        revision 2.32 date: 1996/04/29 23:25:27;  author: dawn;
        state: Exp;  lines: +1 -0 branches:  2.32.34;
        to not make it into devo.

gdb/ChangeLog
gdb/c-valprint.c

index 48cc750..11787bc 100644 (file)
@@ -1,4 +1,12 @@
 
+Wed Feb 12 02:44:39 1997  Dawn Perchik  <dawn@cygnus.com>
+
+        * c-valprint.c (c_val_print): Fix printing for arrays defined
+        with 0 length.  A sticky tag caused this fix from 
+       revision 2.32 date: 1996/04/29 23:25:27;  author: dawn;  
+       state: Exp;  lines: +1 -0 branches:  2.32.34;
+       to not make it into devo.
+
 Tue Feb 11 22:24:39 1997  Dawn Perchik  <dawn@cygnus.com>
 
        * defs.h: Fix cntl-C to read from the Windows message queue.
index 7901a5f..77f4d19 100644 (file)
@@ -153,6 +153,7 @@ c_val_print (type, valaddr, address, stream, format, deref_ref, recurse,
          addr = unpack_pointer (type, valaddr);
        print_unpacked_pointer:
           elttype = check_typedef (TYPE_TARGET_TYPE (type));
+          elttype = check_typedef (TYPE_TARGET_TYPE (type));
 
          if (TYPE_CODE (elttype) == TYPE_CODE_FUNC)
            {