diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2019-05-10 21:00:39 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2019-05-10 21:00:39 -0700 |
commit | f3ad27b06fb0cb884bdf340785f44286e1009b58 (patch) | |
tree | 0240a13f6674f13152c298849c67d976eb73036f /examples/playit-alsa.c | |
parent | cc0d7642ca65172768a4a7c365c7f4e77f612b12 (diff) |
examples: fix main() signature
This upset mingw64 on the sdl build because conflict with SDL_Main,
drop the const.
Diffstat (limited to 'examples/playit-alsa.c')
-rw-r--r-- | examples/playit-alsa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/playit-alsa.c b/examples/playit-alsa.c index 563fb72..e4becc4 100644 --- a/examples/playit-alsa.c +++ b/examples/playit-alsa.c @@ -148,7 +148,7 @@ static void alsa_close(snd_pcm_t *pcm) } -int main(int argc, const char *argv[]) +int main(int argc, char *argv[]) { song_t *song; uint8_t buf[8192]; |