* varobj.c (instantiate_pretty_printer): Remove duplicate
authorTom Tromey <tromey@redhat.com>
Thu, 31 Mar 2011 16:20:46 +0000 (16:20 +0000)
committerTom Tromey <tromey@redhat.com>
Thu, 31 Mar 2011 16:20:46 +0000 (16:20 +0000)
'return'.

gdb/ChangeLog
gdb/varobj.c

index 69c44a7..d6eb28b 100644 (file)
@@ -1,3 +1,8 @@
+2011-03-31  Tom Tromey  <tromey@redhat.com>
+
+       * varobj.c (instantiate_pretty_printer): Remove duplicate
+       'return'.
+
 2011-03-31  Ulrich Weigand  <ulrich.weigand@linaro.org>
 
        * i386-tdep.c (i386_frame_prev_register): Unwind SP from memory
index 99d8d45..124909a 100644 (file)
@@ -785,7 +785,6 @@ instantiate_pretty_printer (PyObject *constructor, struct value *value)
   printer = PyObject_CallFunctionObjArgs (constructor, val_obj, NULL);
   Py_DECREF (val_obj);
   return printer;
-  return NULL;
 }
 
 #endif