From 4959b8e20e89d66b998637697be0e4acc4127600 Mon Sep 17 00:00:00 2001 From: TwinAphex51224 Date: Mon, 5 Mar 2012 21:23:40 +0100 Subject: [PATCH] Revert "Remove useless return." This reverts commit 24e807f520709e2b99d1f0044281a0f2347315b0. --- console/librsound/librsound.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/console/librsound/librsound.c b/console/librsound/librsound.c index 1a553b550f..798ec36429 100644 --- a/console/librsound/librsound.c +++ b/console/librsound/librsound.c @@ -685,6 +685,9 @@ static int rsnd_poll(struct pollfd *fd, int numfd, int timeout) } return 0; } + + // Avoids warning + return 0; } static void rsnd_sleep(int msecs)