mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
ahc: correct error message
The error message is specific to only one of the failure cases and is misleading in the others. Correct it to be more generic and cover all the failure cases. https://bugzilla.gnome.org/show_bug.cgi?id=763065
This commit is contained in:
parent
e337918a06
commit
ddebf1ff66
1 changed files with 2 additions and 1 deletions
|
@ -1681,7 +1681,8 @@ _init_classes (void)
|
|||
|
||||
failed:
|
||||
if (err) {
|
||||
GST_ERROR ("Failed to get android.hardware.Camera class: %s", err->message);
|
||||
GST_ERROR ("Failed to initialize android.hardware.Camera classes: %s",
|
||||
err->message);
|
||||
g_clear_error (&err);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue