Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Julian Bouzas
WirePlumber
Commits
2218b561
Commit
2218b561
authored
May 19, 2021
by
Julian Bouzas
Browse files
m-default-profile: log error message when failed to get current profile
parent
fc41af5c
Changes
1
Show whitespace changes
Inline
Side-by-side
modules/module-default-profile.c
View file @
2218b561
...
@@ -180,7 +180,8 @@ on_device_profile_notified (WpPipewireObject *device, GAsyncResult *res,
...
@@ -180,7 +180,8 @@ on_device_profile_notified (WpPipewireObject *device, GAsyncResult *res,
/* Finish */
/* Finish */
profiles
=
wp_pipewire_object_enum_params_finish
(
device
,
res
,
&
error
);
profiles
=
wp_pipewire_object_enum_params_finish
(
device
,
res
,
&
error
);
if
(
error
)
{
if
(
error
)
{
wp_warning_object
(
self
,
"failed to get current profile on device"
);
wp_warning_object
(
self
,
"failed to get current profile on device: %s"
,
error
->
message
);
return
;
return
;
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment