1
0
mirror of https://github.com/solemnwarning/ipxwrapper synced 2024-12-30 16:45:37 +01:00

Added missing break statement

This commit is contained in:
Daniel Collins 2011-04-24 20:17:18 +00:00
parent b7f03eabeb
commit 39233b20a1

View File

@ -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);