Huw Davies : winegcc: Add a missing break.

Alexandre Julliard julliard at winehq.org
Mon Sep 30 16:19:06 CDT 2019


Module: wine
Branch: master
Commit: ba2def2503ac16e11a6186909805e53b3ef1885b
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=ba2def2503ac16e11a6186909805e53b3ef1885b

Author: Huw Davies <huw at codeweavers.com>
Date:   Mon Sep 30 08:35:47 2019 +0100

winegcc: Add a missing break.

Signed-off-by: Huw Davies <huw at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 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=");




More information about the wine-cvs mailing list