E: e_thumb: Fix 'ignored return value' of nice.

SVN revision: 59602
This commit is contained in:
Christopher Michael 2011-05-22 17:09:16 +00:00
parent 0fe304a4bc
commit ec75c4700b
1 changed files with 2 additions and 1 deletions

View File

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