[channels,disp] fix typo in monitor->height

This commit is contained in:
Mikhail Kashin 2024-08-05 23:54:08 +03:00
parent bf6f2b9583
commit 5c471974ba
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ static BOOL disp_server_is_monitor_layout_valid(const DISPLAY_CONTROL_MONITOR_LA
if (monitor->Height < DISPLAY_CONTROL_MIN_MONITOR_HEIGHT ||
monitor->Height > DISPLAY_CONTROL_MAX_MONITOR_HEIGHT)
{
WLog_WARN(TAG, "Received invalid value for monitor->Height: %" PRIu32 "", monitor->Width);
WLog_WARN(TAG, "Received invalid value for monitor->Height: %" PRIu32 "", monitor->Height);
return FALSE;
}