* kill.c (main): Avoid skipping next argument when a signal number is

specified.
* Makefile.in: Always clean dumper.exe.
This commit is contained in:
Christopher Faylor
2000-08-29 01:58:00 +00:00
parent 6beeb24016
commit 1b38471e5e
3 changed files with 10 additions and 2 deletions

View File

@ -37,7 +37,7 @@ main (int argc, char **argv)
break;
else if (strcmp(*argv + 1, "0") != 0)
{
sig = getsig (*argv++ + 1);
sig = getsig (*argv + 1);
gotsig = 1;
}
else