add autom4te.cache to .cvsignore
[deliverable/binutils-gdb.git] / gdb / target.c
index caa22794c4372110bef37fc5dc335dd5a7ce2968..f9d6064e0c4eed30a66a9ce7094d88640f6f10e3 100644 (file)
@@ -1252,7 +1252,8 @@ target_flash_erase (ULONGEST address, LONGEST length)
          if (targetdebug)
            fprintf_unfiltered (gdb_stdlog, "target_flash_erase (%s, %s)\n",
                                 paddr (address), phex (length, 0));
-         return t->to_flash_erase (t, address, length);
+         t->to_flash_erase (t, address, length);
+         return;
        }
 
   tcomplain ();
@@ -1268,7 +1269,8 @@ target_flash_done (void)
        {
          if (targetdebug)
            fprintf_unfiltered (gdb_stdlog, "target_flash_done\n");
-         return t->to_flash_done (t);
+         t->to_flash_done (t);
+         return;
        }
 
   tcomplain ();
This page took 0.023497 seconds and 4 git commands to generate.