mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-04-10 14:53:00 +02:00
fix an incorrectly typed const
This commit is contained in:
parent
2fd043b55c
commit
64e3c19a8c
1 changed files with 2 additions and 2 deletions
|
@ -85,8 +85,8 @@ int main(int argc, const char* argv[]) {
|
|||
|
||||
timeval lastStatSendTime = {};
|
||||
|
||||
const char ASSIGNMENT_POOL_OPTION = "-p";
|
||||
const char ASSIGNMENT_SERVER_OPTION = "-a";
|
||||
const char ASSIGNMENT_POOL_OPTION[] = "-p";
|
||||
const char ASSIGNMENT_SERVER_OPTION[]g = "-a";
|
||||
|
||||
// set our assignment pool from argv, if it exists
|
||||
const char* assignmentPool = getCmdOption(argc, argv, ASSIGNMENT_POOL_OPTION);
|
||||
|
|
Loading…
Reference in a new issue