shell: signal is a reserved identifier use sig instead.

Rule 21.2 "A reserved identifier or macro name shall not be declared"

Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
This commit is contained in:
Gerard Marull-Paretas 2023-04-13 19:24:12 +02:00 committed by Carles Cufí
parent b2d442ee87
commit 404b2ba474

View File

@ -1280,14 +1280,14 @@ static void shell_signal_handle(const struct shell *sh,
enum shell_signal sig_idx,
shell_signal_handler_t handler)
{
struct k_poll_signal *signal = &sh->ctx->signals[sig_idx];
struct k_poll_signal *sig = &sh->ctx->signals[sig_idx];
int set;
int res;
k_poll_signal_check(signal, &set, &res);
k_poll_signal_check(sig, &set, &res);
if (set) {
k_poll_signal_reset(signal);
k_poll_signal_reset(sig);
handler(sh);
}
}