Skip to content

Commit

Permalink
Don't declare multiple variables in the same statement
Browse files Browse the repository at this point in the history
Signed-off-by: Antonio Ospite <ao2@amarulasolutions.com>
  • Loading branch information
ao2 committed Jun 3, 2013
1 parent 9df18d4 commit 7eb7afe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pcm.c
Expand Up @@ -209,7 +209,8 @@ static void hiface_pcm_stream_stop(struct pcm_runtime *rt)
/* call with stream_mutex locked */
static int hiface_pcm_stream_start(struct pcm_runtime *rt)
{
int ret = 0, i;
int ret = 0;
int i;

if (rt->stream_state == STREAM_DISABLED) {
/* submit our out urbs zero init */
Expand Down

0 comments on commit 7eb7afe

Please sign in to comment.