Commit 2a2b1840 authored by James Hatheway's avatar James Hatheway Committed by Alexandre Julliard

Add \n to FIXME call in acmGetVersion to prevent overflowing buffer in

wine_dbg_vprintf.
parent f3c93b80
......@@ -68,7 +68,7 @@ DWORD WINAPI acmGetVersion(void)
case VER_PLATFORM_WIN32_NT:
return 0x04000565; /* 4.0.1381 */
default:
FIXME("%ld not supported",version.dwPlatformId);
FIXME("%ld not supported\n",version.dwPlatformId);
case VER_PLATFORM_WIN32_WINDOWS:
return 0x04000000; /* 4.0.0 */
}
......
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