diff options
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"); |