[PATCH] winegcc: Add a missing break.

Huw Davies huw at codeweavers.com
Mon Sep 30 02:35:47 CDT 2019


Signed-off-by: Huw Davies <huw at codeweavers.com>
---
Note, completely untested on ARM.

 tools/winegcc/winegcc.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tools/winegcc/winegcc.c b/tools/winegcc/winegcc.c
index 0ca553318e..fa4407f913 100644
--- a/tools/winegcc/winegcc.c
+++ b/tools/winegcc/winegcc.c
@@ -737,6 +737,7 @@ static void compile(struct options* opts, const char* lang)
             strarray_add(comp_args, "-D__stdcall=__attribute__((pcs(\"aapcs-vfp\")))");
             strarray_add(comp_args, "-D__cdecl=__stdcall");
             strarray_add(comp_args, "-D__fastcall=__stdcall");
+            break;
         case CPU_POWERPC:
             strarray_add(comp_args, "-D__stdcall=");
             strarray_add(comp_args, "-D__cdecl=");
-- 
2.23.0




More information about the wine-devel mailing list