diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2022-03-01 10:46:49 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2022-03-01 10:49:17 +0100 |
commit | 55f969a006109703dd056bee1b6c1d11b0602449 (patch) | |
tree | 366d40c6d71fdfc326ff32e606804dd73e2b1840 | |
parent | 5fe20cf3212fbada86fb75cf13064caed6a5f3a9 (diff) | |
download | busybox-w32-55f969a006109703dd056bee1b6c1d11b0602449.tar.gz busybox-w32-55f969a006109703dd056bee1b6c1d11b0602449.tar.bz2 busybox-w32-55f969a006109703dd056bee1b6c1d11b0602449.zip |
taskset: fix printf format mismatch in !FEATURE_TASKSET_FANCY config. closes 14616
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | util-linux/taskset.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/util-linux/taskset.c b/util-linux/taskset.c index d2ef9b98f..8b410f369 100644 --- a/util-linux/taskset.c +++ b/util-linux/taskset.c | |||
@@ -55,7 +55,6 @@ | |||
55 | * Not yet implemented: | 55 | * Not yet implemented: |
56 | * -a/--all-tasks (affect all threads) | 56 | * -a/--all-tasks (affect all threads) |
57 | * needs to get TIDs from /proc/PID/task/ and use _them_ as "pid" in sched_setaffinity(pid) | 57 | * needs to get TIDs from /proc/PID/task/ and use _them_ as "pid" in sched_setaffinity(pid) |
58 | * -c/--cpu-list (specify CPUs via "1,3,5-7") | ||
59 | */ | 58 | */ |
60 | 59 | ||
61 | #include <sched.h> | 60 | #include <sched.h> |
@@ -91,7 +90,7 @@ static char *from_mask(const ul *mask, unsigned sz_in_bytes) | |||
91 | } | 90 | } |
92 | #else | 91 | #else |
93 | #define TASKSET_PRINTF_MASK "%lx" | 92 | #define TASKSET_PRINTF_MASK "%lx" |
94 | static unsigned long long from_mask(ul *mask, unsigned sz_in_bytes UNUSED_PARAM) | 93 | static unsigned long from_mask(ul *mask, unsigned sz_in_bytes UNUSED_PARAM) |
95 | { | 94 | { |
96 | return *mask; | 95 | return *mask; |
97 | } | 96 | } |