* top.c (execute_command): Fix uninitialized variable error.

This commit is contained in:
Ulrich Weigand 2008-03-17 14:06:11 +00:00
parent f3439ea8d1
commit 2f77b315eb
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2008-03-17 Ulrich Weigand <uweigand@de.ibm.com>
* top.c (execute_command): Fix uninitialized variable error.
2008-03-16 Nick Hudson <nick.hudson@dsl.pipex.com> 2008-03-16 Nick Hudson <nick.hudson@dsl.pipex.com>
* Makefile.in (amd64nbsd-nat.o): New dependency. * Makefile.in (amd64nbsd-nat.o): New dependency.

View File

@ -412,7 +412,7 @@ execute_command (char *p, int from_tty)
char *line; char *line;
struct continuation_arg *arg1; struct continuation_arg *arg1;
struct continuation_arg *arg2; struct continuation_arg *arg2;
long time_at_cmd_start; long time_at_cmd_start = 0;
#ifdef HAVE_SBRK #ifdef HAVE_SBRK
long space_at_cmd_start = 0; long space_at_cmd_start = 0;
#endif #endif