Commit 67320c44 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

server: Do not promote lparam to signed int (Coverity).

parent 6b90f27d
......@@ -1617,7 +1617,7 @@ static int queue_keyboard_message( struct desktop *desktop, user_handle_t win, c
msg->type = MSG_HARDWARE;
msg->win = get_user_full_handle( win );
msg->lparam = (input->kbd.scan << 16) | 1; /* repeat count */
msg->lparam = (input->kbd.scan << 16) | 1u; /* repeat count */
msg->time = input->kbd.time;
msg->result = NULL;
msg->data = msg_data;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment