From: Takashi Iwai Date: Wed, 6 Apr 2005 13:08:28 +0000 (+0000) Subject: Fix compile warning X-Git-Tag: v1.0.9rc3~19 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=c915659538cd5f14cd9e2790881aff74164a3da2;p=alsa-lib.git Fix compile warning Fix compile warning (forgot return 0). --- diff --git a/src/pcm/pcm_direct.c b/src/pcm/pcm_direct.c index 7b546540..8d6ba827 100644 --- a/src/pcm/pcm_direct.c +++ b/src/pcm/pcm_direct.c @@ -429,6 +429,7 @@ int snd_pcm_direct_timer_stop(snd_pcm_direct_t *dmix) { snd_timer_stop(dmix->timer); snd_pcm_direct_clear_timer_queue(dmix); + return 0; } int snd_pcm_direct_poll_revents(snd_pcm_t *pcm, struct pollfd *pfds, unsigned int nfds, unsigned short *revents)