1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

changes to IM code that came from Petr's review

server-tools/instance-manager/IMService.cpp:
  syntax change requested by Petr
server-tools/instance-manager/options.cc:
  return 1 instead of -1
server-tools/instance-manager/options.h:
  changed return value of setup_windows_defaults to int from void
This commit is contained in:
unknown
2005-08-09 07:57:40 -06:00
parent 7a42570fb7
commit f766a1dc41
3 changed files with 7 additions and 7 deletions

View File

@ -66,6 +66,6 @@ int HandleServiceOptions(Options options)
}
}
else
ret_val= winService.Init() ? 0 : 1;
ret_val= !winService.Init();
return ret_val;
}