const int is unnecessary

This commit is contained in:
Stephen Birarda 2013-04-23 14:05:24 -07:00
parent 32b1e88a0a
commit 8a222da42f
2 changed files with 2 additions and 2 deletions

View file

@ -85,7 +85,7 @@ void *injectAudio(void *args) {
return NULL;
}
int main(const int argc, const char* argv[]) {
int main(int argc, const char* argv[]) {
// new seed for random audio sleep times
srand(time(0));

View file

@ -93,7 +93,7 @@ bool processParameters(int parameterCount, char* parameterData[])
return true;
};
int main(const int argc, const char* argv[]) {
int main(int argc, const char* argv[]) {
srand(time(0));
int AUDIO_UDP_SEND_PORT = 1500 + (rand() % (int)(1500 - 2000 + 1));