2000-07-11 Scott Bambrough <scottb@netwinder.org>

* command.c (do_setshow_command): Fix typo in var_auto_boolean
	case.
This commit is contained in:
Scott Bambrough 2000-07-11 14:00:42 +00:00
parent acdb74a06f
commit d5b61b5991
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2000-07-11 Scott Bambrough <scottb@netwinder.org>
* command.c (do_setshow_command): Fix typo in var_auto_boolean
case.
Tue Jul 11 20:38:36 2000 Andrew Cagney <cagney@b1.cygnus.com>
* mips-tdep.c: General cleanup. Delete all #if 0 code. Convert

View File

@ -1811,7 +1811,7 @@ do_setshow_command (arg, from_tty, c)
fputs_filtered (*(int *) c->var ? "on" : "off", stb->stream);
break;
case var_auto_boolean:
switch (*(enum auto_boolean*) c->var)
switch (*(enum cmd_auto_boolean*) c->var)
{
case CMD_AUTO_BOOLEAN_TRUE:
fputs_filtered ("on", stb->stream);