1
0
Fork 0

fixed my bad

This commit is contained in:
Jan Steemann 2015-03-27 17:00:56 +01:00
parent 960b464c57
commit e6a6327cf4
1 changed files with 3 additions and 3 deletions

View File

@ -120,9 +120,9 @@ namespace triagens {
if (_mode == ServerMode::MODE_STANDALONE) {
return "standalone";
}
TRI_ASSERT(_mode == ServerMode::MODE_SERVICE) {
return "service";
}
TRI_ASSERT(_mode == ServerMode::MODE_SERVICE);
return "service";
}
// -----------------------------------------------------------------------------