Skip to content

Commit e8f15f0

Browse files
committed
Bug#32107056 warning C4065: switch statement contains 'default' but no 'case' labels in plugin mgmsrc [#11] [noclose]
src\mgmsrv\MgmtSrvr.cpp(3531,3): warning C4065: switch statement contains 'default' but no 'case' labels Change-Id: I0de4253a740d73bdb369c524b645f95882c89311
1 parent 71f6399 commit e8f15f0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

storage/ndb/src/mgmsrv/MgmtSrvr.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3468,9 +3468,9 @@ MgmtSrvr::dumpStateSelf(const Uint32 args[], Uint32 no)
34683468
if (no < 1)
34693469
return -1;
34703470

3471+
#ifdef ERROR_INSERT
34713472
switch(args[0])
34723473
{
3473-
#ifdef ERROR_INSERT
34743474
case 9994:
34753475
{
34763476
/* Transporter send blocking */
@@ -3517,10 +3517,10 @@ MgmtSrvr::dumpStateSelf(const Uint32 args[], Uint32 no)
35173517
theFacade->release_consumed_sendbuffer();
35183518
break;
35193519
}
3520-
#endif
35213520
default:
35223521
;
35233522
}
3523+
#endif
35243524

35253525
return 0;
35263526
}

0 commit comments

Comments
 (0)