From 55f969a006109703dd056bee1b6c1d11b0602449 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Tue, 1 Mar 2022 10:46:49 +0100 Subject: [PATCH] taskset: fix printf format mismatch in !FEATURE_TASKSET_FANCY config. closes 14616 Signed-off-by: Denys Vlasenko --- util-linux/taskset.c | 3 +-- 1 file changed, 1 insertion(+), 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 @@ * Not yet implemented: * -a/--all-tasks (affect all threads) * needs to get TIDs from /proc/PID/task/ and use _them_ as "pid" in sched_setaffinity(pid) - * -c/--cpu-list (specify CPUs via "1,3,5-7") */ #include @@ -91,7 +90,7 @@ static char *from_mask(const ul *mask, unsigned sz_in_bytes) } #else #define TASKSET_PRINTF_MASK "%lx" -static unsigned long long from_mask(ul *mask, unsigned sz_in_bytes UNUSED_PARAM) +static unsigned long from_mask(ul *mask, unsigned sz_in_bytes UNUSED_PARAM) { return *mask; }