Skip to content
Snippets Groups Projects
Commit 67320c44 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard
Browse files

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

parent 6b90f27d
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment