From: Takashi Sakamoto Date: Thu, 14 Jul 2016 14:07:26 +0000 (+0900) Subject: pcm: change code formatting for snd_pcm_direct_set_timer_params() X-Git-Tag: v1.1.2~68 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=8bb090be0520c83aaca3aba9e53ed6304eb62826;p=alsa-lib.git pcm: change code formatting for snd_pcm_direct_set_timer_params() This commit applies code format according to typical and moderate rule, for snd_pcm_direct_set_timer_params(). Signed-off-by: Takashi Sakamoto Signed-off-by: Takashi Iwai --- diff --git a/src/pcm/pcm_direct.c b/src/pcm/pcm_direct.c index dbd7e2b3..50d55396 100644 --- a/src/pcm/pcm_direct.c +++ b/src/pcm/pcm_direct.c @@ -1375,7 +1375,7 @@ int snd_pcm_direct_set_timer_params(snd_pcm_direct_t *dmix) ret = snd_timer_params(dmix->timer, params); if (ret < 0) { SNDERR("unable to set timer parameters"); - return ret; + return ret; } return 0; }