Lint fixes from Paul Eggert (eggert@twinsun.com):

* command.c (do_setshow_command):  var_uintegers are unsigned.
* sparc-tdep.c (save_insn_opcodes, restore_insn_opcodes):
unsigned, since they use hex values with the high bit set.
This commit is contained in:
John Gilmore 1993-03-05 01:44:38 +00:00
parent 2456bacba8
commit 4966c17c42
2 changed files with 11 additions and 3 deletions

View file

@ -1,3 +1,11 @@
Thu Mar 4 17:42:03 1993 John Gilmore (gnu@cygnus.com)
Lint fixes from Paul Eggert (eggert@twinsun.com):
* command.c (do_setshow_command): var_uintegers are unsigned.
* sparc-tdep.c (save_insn_opcodes, restore_insn_opcodes):
unsigned, since they use hex values with the high bit set.
Thu Mar 4 08:22:55 1993 Fred Fish (fnf@cygnus.com)
Fixes submitted by Karl Berry (karl@nermal.hq.ileaf.com):

View file

@ -1054,9 +1054,9 @@ do_setshow_command (arg, from_tty, c)
case var_uinteger:
if (arg == NULL)
error_no_arg ("integer to set it to.");
*(int *) c->var = parse_and_eval_address (arg);
if (*(int *) c->var == 0)
*(int *) c->var = UINT_MAX;
*(unsigned int *) c->var = parse_and_eval_address (arg);
if (*(unsigned int *) c->var == 0)
*(unsigned int *) c->var = UINT_MAX;
break;
case var_zinteger:
if (arg == NULL)