fix an incorrectly typed const

This commit is contained in:
Stephen Birarda 2013-09-09 10:07:31 -07:00
parent 2fd043b55c
commit 64e3c19a8c

View file

@ -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);