remove () around return

This commit is contained in:
Isaac Connor 2018-07-04 14:50:47 -04:00
parent cf4a1c73fd
commit dd479c9e55
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ bool ValidateAccess( User *user, int mon_id ) {
user->Id(), user->getUsername(), mon_id );
exit( -1 );
}
return( allowed );
return allowed;
}
int main( int argc, const char *argv[] ) {