* printcmd.c (print_address_symbolic): turn this into an assigment
authorDavid D. Zuhn <zoo@cygnus>
Sat, 29 May 1993 00:26:49 +0000 (00:26 +0000)
committerDavid D. Zuhn <zoo@cygnus>
Sat, 29 May 1993 00:26:49 +0000 (00:26 +0000)
instead of an initialization (many compilers don't accept
structure initialization).

gdb/ChangeLog
gdb/printcmd.c

index f3776605b7f4b4d4e3358dbb4725cca8cdc1e0a3..429b9ee1e6f288986386ff8d95fb433511cc9588 100644 (file)
@@ -1,3 +1,9 @@
+Fri May 28 17:24:51 1993  david d `zoo' zuhn  (zoo at cirdan.cygnus.com)
+
+       * printcmd.c (print_address_symbolic): turn this into an assigment
+       instead of an initialization (many compilers don't accept
+       structure initialization). 
+
 Thu May 27 16:56:25 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
 
        * xcoffread.c (read_xcoff_symtab): If several program csects in one
index 6aca2f53e04842c2e5a26f6485d0e9f6b6c94fc2..c6d4a6c29d9856d4dcc4ceaef1faa7d097c2ccce 100644 (file)
@@ -591,7 +591,9 @@ print_address_symbolic (addr, stream, do_demangle, leadin)
   /* Append source filename and line number if desired.  */
   if (symbol && print_symbol_filename)
     {
-      struct symtab_and_line sal = find_pc_line (addr, 0);
+      struct symtab_and_line sal;
+
+      sal = find_pc_line (addr, 0);
       if (sal.symtab)
        fprintf_filtered (stream, " at %s:%d", sal.symtab->filename, sal.line);
     }