Alex Henrie : user32: Move misplaced break statement.

Alexandre Julliard julliard at wine.codeweavers.com
Tue Oct 6 09:43:59 CDT 2015


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

Author: Alex Henrie <alexhenrie24 at gmail.com>
Date:   Sun Oct  4 21:27:54 2015 -0600

user32: Move misplaced break statement.

Signed-off-by: Alex Henrie <alexhenrie24 at gmail.com>

---

 dlls/user32/spy.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/user32/spy.c b/dlls/user32/spy.c
index b370aea..c0acd82 100644
--- a/dlls/user32/spy.c
+++ b/dlls/user32/spy.c
@@ -2520,10 +2520,10 @@ static void SPY_DumpStructure(const SPY_INSTANCE *sp_e, BOOL enter)
                     TRACE("NMHDR hwndFrom=%p idFrom=0x%08lx code=0x%08x\n",
                           pnmh->hwndFrom, pnmh->idFrom, pnmh->code);
             }
+            break;
         default:
             if (sp_e->data_len > 0)
                 SPY_DumpMem ("MSG lParam", (UINT *)sp_e->lParam, sp_e->data_len);
-            break;
         }
 
 }




More information about the wine-cvs mailing list