diff options
author | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-10-05 10:01:05 +0000 |
---|---|---|
committer | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-10-05 10:01:05 +0000 |
commit | 3a4f0f513d85e8e0230f8253a8804a1ab6d71b51 (patch) | |
tree | 731ec79e469eb76896ef168c2fd71193d9e10e64 /audio/sdlaudio.c | |
parent | 491f63e34e9ee58a6fed5ee101a7c5baa0219726 (diff) | |
download | qemu-3a4f0f513d85e8e0230f8253a8804a1ab6d71b51.tar.gz qemu-3a4f0f513d85e8e0230f8253a8804a1ab6d71b51.tar.bz2 qemu-3a4f0f513d85e8e0230f8253a8804a1ab6d71b51.zip |
Make audio_pcm_opsstatic const
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5422 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'audio/sdlaudio.c')
-rw-r--r-- | audio/sdlaudio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/sdlaudio.c b/audio/sdlaudio.c index b6cfad18f5..5df173616d 100644 --- a/audio/sdlaudio.c +++ b/audio/sdlaudio.c @@ -423,7 +423,7 @@ static struct audio_option sdl_options[] = { {NULL, 0, NULL, NULL, NULL, 0} }; -static struct audio_pcm_ops sdl_pcm_ops = { +static const struct audio_pcm_ops sdl_pcm_ops = { sdl_init_out, sdl_fini_out, sdl_run_out, |