diff --git a/engine/client/identification.c b/engine/client/identification.c index 2b1a8127..b6745bd4 100644 --- a/engine/client/identification.c +++ b/engine/client/identification.c @@ -421,9 +421,9 @@ static int ID_RunWMIC( char *buffer, const wchar_t *cmdline ) CreatePipe( &g_OUT_Rd, &g_OUT_Wr, &saAttr, 0 ); SetHandleInformation( g_IN_Wr, HANDLE_FLAG_INHERIT, 0 ); - STARTUPINFO si = + STARTUPINFOW si = { - .cb = sizeof( STARTUPINFO ), + .cb = sizeof( STARTUPINFOW ), .dwFlags = STARTF_USESTDHANDLES, .hStdInput = g_IN_Rd, .hStdOutput = g_OUT_Wr,