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);
}
else {
pa_assert(jack->path && jack->path->port);
port = jack->path->port;
pa_assert(jack->path);
pa_assert_se(port = jack->path->port);
}
report_port_state(port, u);
}