mirror of
https://github.com/overte-org/overte.git
synced 2025-07-28 22:50:33 +02:00
make argv a const so Brad quiets down
This commit is contained in:
parent
ed5afb3537
commit
49f9dfe03c
1 changed files with 1 additions and 1 deletions
|
@ -85,7 +85,7 @@ void *injectAudio(void *args) {
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
int main(int argc, const char* argv[]) {
|
int main(const int argc, const char* argv[]) {
|
||||||
// new seed for random audio sleep times
|
// new seed for random audio sleep times
|
||||||
srand(time(0));
|
srand(time(0));
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue