Commit 25b97e99 authored by Christian Costa's avatar Christian Costa Committed by Alexandre Julliard

attrib: Display unknown options.

parent d18b406b
...@@ -167,7 +167,7 @@ int wmain(int argc, WCHAR *argv[]) ...@@ -167,7 +167,7 @@ int wmain(int argc, WCHAR *argv[])
} else if (((param[1] == 'R') || (param[1] == 'r')) && !param[2]) { } else if (((param[1] == 'R') || (param[1] == 'r')) && !param[2]) {
WINE_FIXME("Option /R not yet supported\n"); WINE_FIXME("Option /R not yet supported\n");
} else { } else {
WINE_FIXME("Unrecognized option\n"); WINE_FIXME("Unknown option %s\n", debugstr_w(param));
} }
} else if (param[0]) { } else if (param[0]) {
strcpyW(name, param); strcpyW(name, param);
......
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