From c0bcbb2145e035f165def626d3e81e5390f5ab85 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Wed, 25 Jan 2017 03:37:14 +0100 Subject: [PATCH] (alsathread.c) Cleanup --- audio/drivers/alsathread.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/audio/drivers/alsathread.c b/audio/drivers/alsathread.c index c4e9d06f65..5ea11f2d0d 100644 --- a/audio/drivers/alsathread.c +++ b/audio/drivers/alsathread.c @@ -27,9 +27,8 @@ #include "../audio_driver.h" #include "../../verbosity.h" -#define TRY_ALSA(x) if (x < 0) { \ - goto error; \ - } +#define TRY_ALSA(x) if (x < 0) \ + goto error; typedef struct alsa_thread {