From: Hans Leidekker hans@codeweavers.com
--- programs/wmic/main.c | 6 +++--- programs/wmic/wmic.h | 2 +- programs/wmic/wmic.rc | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/programs/wmic/main.c b/programs/wmic/main.c index a46e73c4c76..363b9af581f 100644 --- a/programs/wmic/main.c +++ b/programs/wmic/main.c @@ -341,7 +341,7 @@ static int process_args( int argc, WCHAR *argv[] ) int i;
for (i = 0; i < argc && argv[i][0] == '/'; i++) - WINE_FIXME( "command line switch %s not supported\n", debugstr_w(argv[i]) ); + WINE_FIXME( "switch %s not supported\n", debugstr_w(argv[i]) );
if (i >= argc) goto not_supported; @@ -351,7 +351,7 @@ static int process_args( int argc, WCHAR *argv[] ) return 0; }
- if (!wcsicmp( argv[i], L"class") || !wcsicmp( argv[i], L"context" )) + if (!wcsicmp( argv[i], L"class" ) || !wcsicmp( argv[i], L"context" )) { WINE_FIXME( "command %s not supported\n", debugstr_w(argv[i]) ); goto not_supported; @@ -388,7 +388,7 @@ static int process_args( int argc, WCHAR *argv[] ) }
not_supported: - output_error( STRING_CMDLINE_NOT_SUPPORTED ); + output_error( STRING_COMMAND_NOT_SUPPORTED ); return 1; }
diff --git a/programs/wmic/wmic.h b/programs/wmic/wmic.h index fef2113feb0..b5779bd6eb9 100644 --- a/programs/wmic/wmic.h +++ b/programs/wmic/wmic.h @@ -18,7 +18,7 @@
#include <windef.h>
-#define STRING_CMDLINE_NOT_SUPPORTED 101 +#define STRING_COMMAND_NOT_SUPPORTED 101 #define STRING_ALIAS_NOT_FOUND 102 #define STRING_INVALID_QUERY 103 #define STRING_INVALID_PATH 104 diff --git a/programs/wmic/wmic.rc b/programs/wmic/wmic.rc index 797fe7dbe08..80d76ac1447 100644 --- a/programs/wmic/wmic.rc +++ b/programs/wmic/wmic.rc @@ -24,7 +24,7 @@ LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
STRINGTABLE { - STRING_CMDLINE_NOT_SUPPORTED, "Error: Command line not supported\n" + STRING_COMMAND_NOT_SUPPORTED, "Error: Command not supported\n" STRING_ALIAS_NOT_FOUND, "Error: Alias not found\n" STRING_INVALID_QUERY, "Error: Invalid query\n" STRING_INVALID_PATH, "Error: Invalid syntax for PATH\n"