Commit ab381658 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

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

parent dfd4191d
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment