mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-18 23:18:20 +00:00
ALSA: seq: seq_memory.c: Fix closing brace followed by if
Add a newline and, while at it, remove a space and redundant braces. Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk> Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
9c5dc3bf12
commit
b245a822a4
@ -101,9 +101,9 @@ int snd_seq_dump_var_event(const struct snd_seq_event *event,
|
||||
len -= size;
|
||||
}
|
||||
return 0;
|
||||
} if (! (event->data.ext.len & SNDRV_SEQ_EXT_CHAINED)) {
|
||||
return func(private_data, event->data.ext.ptr, len);
|
||||
}
|
||||
if (!(event->data.ext.len & SNDRV_SEQ_EXT_CHAINED))
|
||||
return func(private_data, event->data.ext.ptr, len);
|
||||
|
||||
cell = (struct snd_seq_event_cell *)event->data.ext.ptr;
|
||||
for (; len > 0 && cell; cell = cell->next) {
|
||||
|
Loading…
Reference in New Issue
Block a user