make argv a const so Brad quiets down

This commit is contained in:
Stephen Birarda 2013-04-23 13:59:59 -07:00
parent ed5afb3537
commit 49f9dfe03c

View file

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