alsa: Turn one assertion into two

According to coding style, one should have one assertion per line
and not combine assertions.

Signed-off-by: David Henningsson <david.henningsson@canonical.com>
This commit is contained in:
David Henningsson 2013-09-23 09:53:41 +02:00
parent 26bf2df903
commit a89ca82e68

View file

@ -378,8 +378,8 @@ static int report_jack_state(snd_hctl_elem_t *elem, unsigned int mask) {
pa_assert(port); pa_assert(port);
} }
else { else {
pa_assert(jack->path && jack->path->port); pa_assert(jack->path);
port = jack->path->port; pa_assert_se(port = jack->path->port);
} }
report_port_state(port, u); report_port_state(port, u);
} }