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:
parent
2456bacba8
commit
4966c17c42
2 changed files with 11 additions and 3 deletions
|
@ -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):
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue