fix annoying warning

SVN revision: 76813
This commit is contained in:
Mike Blumenkrantz 2012-09-18 11:55:59 +00:00
parent b041db3c1a
commit c162da2523
1 changed files with 1 additions and 2 deletions

View File

@ -85,11 +85,10 @@ main(int argc,
else if (!strncmp(argv[i], "--nice=", 7))
{
const char *val;
int ret = 0;
val = argv[i] + 7;
if (*val)
ret = nice(atoi(val));
nice(atoi(val));
}
}