summaryrefslogtreecommitdiff
path: root/drivers/thermal
diff options
context:
space:
mode:
authorFlorian Eckert <fe@dev.tdt.de>2023-12-04 17:13:35 +0300
committerDaniel Lezcano <daniel.lezcano@linaro.org>2024-01-02 11:33:19 +0300
commit9da39ef332c417ce52732564c1c682a6e1209302 (patch)
tree05c41f7154a8c60426e960ad8be46cc0155d430d /drivers/thermal
parent4bddb0cdfad9148a08b2bda7c3d479b1da715929 (diff)
downloadlinux-9da39ef332c417ce52732564c1c682a6e1209302.tar.xz
tools/thermal/tmon: Fix compilation warning for wrong format
The following warnings are shown during compilation: tui.c: In function 'show_cooling_device': tui.c:216:40: warning: format '%d' expects argument of type 'int', but argument 7 has type 'long unsigned int' [-Wformat=] 216 | "%02d %12.12s%6d %6d", | ~~^ | | | int | %6ld ...... 219 | ptdata.cdi[j].cur_state, | ~~~~~~~~~~~~~~~~~~~~~~~ | | | long unsigned int tui.c:216:44: warning: format '%d' expects argument of type 'int', but argument 8 has type 'long unsigned int' [-Wformat=] 216 | "%02d %12.12s%6d %6d", | ~~^ | | | int | %6ld ...... 220 | ptdata.cdi[j].max_state); | ~~~~~~~~~~~~~~~~~~~~~~~ | | | long unsigned int To fix this, the correct string format must be used for printing. Signed-off-by: Florian Eckert <fe@dev.tdt.de> Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org> Link: https://lore.kernel.org/r/20231204141335.2798194-1-fe@dev.tdt.de
Diffstat (limited to 'drivers/thermal')
0 files changed, 0 insertions, 0 deletions