Skip to content

Commit 7eb7afe

Browse files
committed
Don't declare multiple variables in the same statement
Signed-off-by: Antonio Ospite <[email protected]>
1 parent 9df18d4 commit 7eb7afe

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pcm.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,8 @@ static void hiface_pcm_stream_stop(struct pcm_runtime *rt)
209209
/* call with stream_mutex locked */
210210
static int hiface_pcm_stream_start(struct pcm_runtime *rt)
211211
{
212-
int ret = 0, i;
212+
int ret = 0;
213+
int i;
213214

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

0 commit comments

Comments
 (0)