OSDN Git Service

* generic/gdbtk-wrapper.c (wrap_get_frame_block): Add missing NULL
authorcagney <cagney>
Tue, 9 Apr 2002 01:51:06 +0000 (01:51 +0000)
committercagney <cagney>
Tue, 9 Apr 2002 01:51:06 +0000 (01:51 +0000)
parameter.  Match recent get_frame_block changes.

gdb/gdbtk/ChangeLog
gdb/gdbtk/generic/gdbtk-wrapper.c

index 4c3b25a..81f77ed 100644 (file)
@@ -1,3 +1,8 @@
+2002-04-08  Andrew Cagney  <ac131313@redhat.com>
+
+       * generic/gdbtk-wrapper.c (wrap_get_frame_block): Add missing NULL
+       parameter.  Match recent get_frame_block changes.
+
 2002-04-05  Keith Seitz  <keiths@redhat.com>
 
        * generic/gdbtk-stack.c (gdb_block_vars): Update get_frame_block to
index 8ef0db0..26f3bb5 100644 (file)
@@ -668,7 +668,7 @@ wrap_get_frame_block (char *opaque_arg)
   struct frame_info *fi;
 
   fi = (struct frame_info *) (*args)->args[0];
-  (*args)->result = (char *) get_frame_block (fi);
+  (*args)->result = (char *) get_frame_block (fi, NULL);
 
   return 1;
 }