urlmon: Don't generate unreachable break after return (Smatch).

This commit is contained in:
Michael Stefaniuc 2012-09-16 15:14:02 +02:00 committed by Alexandre Julliard
parent dfd4191de4
commit ab381658e0
1 changed files with 1 additions and 1 deletions

View File

@ -169,7 +169,7 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID fImpLoad)
const char *debugstr_bindstatus(ULONG status)
{
switch(status) {
#define X(x) case x: return #x; break
#define X(x) case x: return #x
X(BINDSTATUS_FINDINGRESOURCE);
X(BINDSTATUS_CONNECTING);
X(BINDSTATUS_REDIRECTING);