Commit cf598bdd authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

attrib: Avoid hardcoding the Unicode string literal lengths.

parent 68bd1ae6
......@@ -126,7 +126,7 @@ int wmain(int argc, WCHAR *argv[])
DWORD count;
HANDLE hff;
WIN32_FIND_DATAW fd;
WCHAR flags[9] = {' ',' ',' ',' ',' ',' ',' ',' ','\0'};
WCHAR flags[] = {' ',' ',' ',' ',' ',' ',' ',' ','\0'};
WCHAR name[128];
WCHAR *param = argc >= 2 ? argv[1] : NULL;
DWORD attrib_set = 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