Commit 2ae10acb authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

gdi32: Avoid hardcoding the Unicode string literal lengths.

parent 632ac0b2
......@@ -410,7 +410,7 @@ static const WCHAR FixedSys_Value[] = {'F','I','X','E','D','F','O','N','.','F','
static const WCHAR System_Value[] = {'F','O','N','T','S','.','F','O','N','\0'};
static const WCHAR OEMFont_Value[] = {'O','E','M','F','O','N','T','.','F','O','N','\0'};
static const WCHAR * const SystemFontValues[4] = {
static const WCHAR * const SystemFontValues[] = {
System_Value,
OEMFont_Value,
FixedSys_Value,
......
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