video/out/placebo/utils: fix -Wignored-qualifiers warning

warning: type qualifiers ignored on function return type
This commit is contained in:
nanahi 2024-03-08 01:59:13 -05:00 committed by Kacper Michajłow
parent a3489c8a0f
commit 4f381f2137
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ static const enum pl_log_level msg_lev_to_pl_log[MSGL_MAX+1] = {
};
// translates log levels while probing
static const enum pl_log_level probing_map(enum pl_log_level level)
static enum pl_log_level probing_map(enum pl_log_level level)
{
switch (level) {
case PL_LOG_FATAL: