diff options
author | Torbjörn Andersson | 2007-02-16 17:13:29 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2007-02-16 17:13:29 +0000 |
commit | 16e7a1287829fe1a580f949fabdaf2df9854800f (patch) | |
tree | b3ca5e2a7972961d06969087abf982b822b2ffb7 /backends/platform | |
parent | 940e89d00e26bec98b6a61f0913c0491ec931472 (diff) | |
download | scummvm-rg350-16e7a1287829fe1a580f949fabdaf2df9854800f.tar.gz scummvm-rg350-16e7a1287829fe1a580f949fabdaf2df9854800f.tar.bz2 scummvm-rg350-16e7a1287829fe1a580f949fabdaf2df9854800f.zip |
Some very obvious cleanups.
svn-id: r25635
Diffstat (limited to 'backends/platform')
-rw-r--r-- | backends/platform/x11/x11.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/platform/x11/x11.cpp b/backends/platform/x11/x11.cpp index a16fbe8adc..7be5a976a9 100644 --- a/backends/platform/x11/x11.cpp +++ b/backends/platform/x11/x11.cpp @@ -244,7 +244,7 @@ static void *sound_and_music_thread(void *params) { param = AFMT_S16_LE; if (ioctl(sound_fd, SNDCTL_DSP_SETFMT, ¶m) == -1) { warning("Error in the SNDCTL_DSP_SETFMT ioctl!\n"); - return NULL;; + return NULL; } if (param != AFMT_S16_LE) { warning("AFMT_S16_LE not supported!\n"); |