From 39233b20a14f55c065fad33a049ed7f0cb46f3da Mon Sep 17 00:00:00 2001 From: Daniel Collins Date: Sun, 24 Apr 2011 20:17:18 +0000 Subject: [PATCH] Added missing break statement --- src/ipxconfig.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ipxconfig.cpp b/src/ipxconfig.cpp index d053a50..c8a190b 100644 --- a/src/ipxconfig.cpp +++ b/src/ipxconfig.cpp @@ -353,6 +353,8 @@ static LRESULT CALLBACK addr_dialog_wproc(HWND hwnd, UINT msg, WPARAM wp, LPARAM PostMessage(hwnd, WM_CLOSE, 0, 0); } } + + break; default: return DefWindowProc(hwnd, msg, wp, lp);