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
Родитель 30a0e09372
Коммит 3fee84300a
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

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