Skip to content
Snippets Groups Projects
Commit 3221338c authored by Alexandre Julliard's avatar Alexandre Julliard
Browse files

wineconsole: Fix a pointer cast warning.

parent 24fe3127
No related branches found
No related tags found
No related merge requests found
......@@ -760,7 +760,7 @@ static UINT WINECON_ParseOptions(const char* lpCmdLine, struct wc_init* wci)
if (strncmp(wci->ptr, "--use-event=", 12) == 0)
{
char* end;
wci->event = (HANDLE)strtol(wci->ptr + 12, &end, 10);
wci->event = ULongToHandle( strtoul(wci->ptr + 12, &end, 10) );
if (end == wci->ptr + 12) return IDS_CMD_INVALID_EVENT_ID;
wci->mode = from_event;
wci->ptr = end;
......
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