Alexandre Julliard : wrc: Ignore unknown -m target options.
Module: wine Branch: master Commit: da066aeafc07ba0849a3048148c864592d0947b4 URL: http://source.winehq.org/git/wine.git/?a=commit;h=da066aeafc07ba0849a3048148... Author: Alexandre Julliard <julliard(a)winehq.org> Date: Wed Feb 12 12:56:51 2014 +0100 wrc: Ignore unknown -m target options. --- tools/wrc/wrc.c | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/wrc/wrc.c b/tools/wrc/wrc.c index 8c376e0..577a6f4 100644 --- a/tools/wrc/wrc.c +++ b/tools/wrc/wrc.c @@ -457,7 +457,6 @@ int main(int argc,char *argv[]) if (!strcmp( optarg, "16" )) win32 = 0; else if (!strcmp( optarg, "32" )) { win32 = 1; pointer_size = 4; } else if (!strcmp( optarg, "64" )) { win32 = 1; pointer_size = 8; } - else error( "Invalid option: -m%s\n", optarg ); break; case 'f': if (*optarg != 'o') error("Unknown option: -f%s\n", optarg);
participants (1)
-
Alexandre Julliard