Skip to content
Snippets Groups Projects
Commit 2d82be84 authored by Gerard Patel's avatar Gerard Patel Committed by Alexandre Julliard
Browse files

Fixed unicode warning.

parent 705e7d70
No related branches found
No related tags found
No related merge requests found
......@@ -785,7 +785,8 @@ static HSZ WDML_GetSecondaryHSZValue(WDML_INSTANCE* thisInstance, HSZ hsz)
wSecondaryString,
MAX_BUFFER_LEN, CP_WINUNICODE))
{
wsprintfW(wUniqueNum,"(%ld)",
static const WCHAR format[] = {'(','%','l','d',')',0};
wsprintfW(wUniqueNum, format,
(DWORD)thisInstance->instanceID);
lstrcatW(wSecondaryString, wUniqueNum);
......
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