[0.4.13][NETREG] Fix 1 MSVC2010SP1 x86 dbg warning C4065 CORE-18104

the warning can be observed with MSVC 2010SP1 (16.0.40219.1) x86 target in dbg configuation:
[11432/11751] Building CXX object modules\rosapps\applications\net\netreg\CMakeFiles\netreg.dir\netreg.cpp.obj
C:\047rls\reactos\modules\rosapps\applications\net\netreg\netreg.cpp(188) : warning C4065: switch statement contains 'default' but no 'case' labels

partial pick of 0.4.15-dev-2951-g 5d8e834897
This commit is contained in:
Joachim Henze 2022-03-29 18:20:11 +02:00
parent db0ba4b0a6
commit e386672b92

View file

@ -182,10 +182,10 @@ private:
}
string present_value( DWORD type, const char *data, DWORD len ) {
switch( type ) {
default:
//switch( type ) {
//default:
return bindump( data, len );
}
//}
}
void process_valid_request( HKEY open_reg_key, string key_name ) {