mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-04 13:29:59 -05:00
bluetooth: add a parenthesis around pa_streq()
I know that pa_streq() is defined with an extra parenthesis, but everytime I look at it, it makes me nervous. :D So it's better to add the parenthesis here.
This commit is contained in:
parent
b3d210eb83
commit
d591d7f37d
1 changed files with 1 additions and 1 deletions
|
|
@ -65,7 +65,7 @@ static pa_hook_result_t source_put_hook_callback(pa_core *c, pa_source *source,
|
||||||
if (!s)
|
if (!s)
|
||||||
return PA_HOOK_OK;
|
return PA_HOOK_OK;
|
||||||
|
|
||||||
if pa_streq(s, "a2dp_source")
|
if (pa_streq(s, "a2dp_source"))
|
||||||
role = "music";
|
role = "music";
|
||||||
else {
|
else {
|
||||||
pa_log_debug("Profile %s cannot be selected for loopback", s);
|
pa_log_debug("Profile %s cannot be selected for loopback", s);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue