revert previous gdb.c commit (it was not a minor comment update)

gdb/ChangeLog:

       * gdb.c: Revert the previous change, which was probably committed
        by accident.
This commit is contained in:
Joel Brobecker 2010-12-29 10:18:51 +00:00
parent eed9788b42
commit 457344df01
2 changed files with 6 additions and 6 deletions

View File

@ -1,3 +1,8 @@
2010-12-29 Joel Brobecker <brobecker@adacore.com>
* gdb.c: Revert the previous change, which was probably committed
by accident.
2010-12-29 Joel Brobecker <brobecker@adacore.com>
* ada-lang.c: Fix typo in comment.

View File

@ -20,21 +20,16 @@
#include "main.h"
#include "gdb_string.h"
#include "interps.h"
#include <mcheck.h>
int
main (int argc, char **argv)
{
struct captured_main_args args;
int ret;
mtrace ();
memset (&args, 0, sizeof args);
args.argc = argc;
args.argv = argv;
args.use_windows = 0;
args.interpreter_p = INTERP_CONSOLE;
ret = gdb_main (&args);
muntrace();
return ret;
return gdb_main (&args);
}