taskset: fix incorrect rage spec and allow 0xXXX input
ping: shave off 60 bytes
This commit is contained in:
@@ -62,7 +62,7 @@ int taskset_main(int argc, char** argv)
|
||||
aff = *++argv; /* <aff> <cmd...> */
|
||||
if (aff) {
|
||||
unsigned i = 0;
|
||||
unsigned long l = xstrtol_range(aff, 16, 1, ULONG_MAX);
|
||||
unsigned long l = xstrtol_range(aff, 0, 1, LONG_MAX);
|
||||
|
||||
CPU_ZERO(&new_mask);
|
||||
while (i < CPU_SETSIZE && l >= (1<<i)) {
|
||||
|
Reference in New Issue
Block a user