Re: [PATCH 1/3] selftests: timers: Fix posix_timers ksft_print_msg warning

From: Oleg Nesterov
Date: Thu Apr 11 2024 - 05:40:52 EST


On 04/10, John Stultz wrote:
>
> After commit 6d029c25b71f ("selftests/timers/posix_timers:
> Reimplement check_timer_distribution()") I started seeing the
> following warning building with an older gcc:
>
> posix_timers.c:250:2: warning: format not a string literal and no format arguments [-Wformat-security]
> 250 | ksft_print_msg(errmsg);
> | ^~~~~~~~~~~~~~

..

> - ksft_print_msg(errmsg);
> + ksft_print_msg("%s", errmsg);
> return -1;

Thanks,

Oleg.