make function call more legible

This commit is contained in:
Dennis Luxen 2014-04-28 12:52:06 +02:00
parent cfbc6b0441
commit a5d3bc9578

View File

@ -78,7 +78,14 @@ int main (int argc, const char * argv[])
ServerPaths server_paths;
const unsigned init_result = GenerateServerProgramOptions(argc, argv, server_paths, ip_address, ip_port, requested_thread_num, use_shared_memory, trial);
const unsigned init_result = GenerateServerProgramOptions(argc,
argv,
server_paths,
ip_address,
ip_port,
requested_thread_num,
use_shared_memory,
trial);
if (init_result == INIT_OK_DO_NOT_START_ENGINE)
{
return 0;