sad

simple audio daemon
git clone git://git.2f30.org/sad
Log | Files | Refs | LICENSE

commit 1cb84b2d8d7906af9666450375a9a799dd62846e
parent e82526896f2c39e19c89f74d584b128262ad2c37
Author: sin <sin@2f30.org>
Date:   Fri, 26 Dec 2014 18:27:45 +0000

Style fix

Diffstat:
Mmp3.c | 5+----
1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/mp3.c b/mp3.c @@ -12,10 +12,7 @@ static mpg123_handle *hdl; static int mp3init(void) { - int r; - - r = mpg123_init(); - if (r != MPG123_OK) { + if (mpg123_init() != MPG123_OK) { warnx("mpg123_init: failed"); return -1; }