Bug 1235238 - Remove unnecessary switch fallthrough to fix -Wimplicit-fallthrough warning in ssltunnel. r=mayhemer

testing/mochitest/ssltunnel/ssltunnel.cpp:1387:5 [-Wimplicit-fallthrough] unannotated fall-through between switch labels
This commit is contained in:
Chris Peterson 2015-11-22 22:17:50 -08:00
parent 951bc898a7
commit 93347b5452

View File

@ -1384,8 +1384,11 @@ int parseConfigFile(const char* filePath)
return 1;
}
b = buffer;
continue;
case '\r':
continue;
default:
*b++ = c;
}