mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
pluginloader: Fix typos
https://bugzilla.gnome.org/show_bug.cgi?id=746585
This commit is contained in:
parent
25295ee285
commit
f718962467
1 changed files with 2 additions and 2 deletions
|
@ -544,7 +544,7 @@ _gst_plugin_loader_client_run (void)
|
||||||
|
|
||||||
dup_fd = dup (0); /* STDIN */
|
dup_fd = dup (0); /* STDIN */
|
||||||
if (dup_fd == -1) {
|
if (dup_fd == -1) {
|
||||||
GST_ERROR ("Failed to start. Could no dup STDIN, errno %d", errno);
|
GST_ERROR ("Failed to start. Could not dup STDIN, errno %d", errno);
|
||||||
res = FALSE;
|
res = FALSE;
|
||||||
goto beach;
|
goto beach;
|
||||||
}
|
}
|
||||||
|
@ -553,7 +553,7 @@ _gst_plugin_loader_client_run (void)
|
||||||
|
|
||||||
dup_fd = dup (1); /* STDOUT */
|
dup_fd = dup (1); /* STDOUT */
|
||||||
if (dup_fd == -1) {
|
if (dup_fd == -1) {
|
||||||
GST_ERROR ("Failed to start. Could no dup STDOUT, errno %d", errno);
|
GST_ERROR ("Failed to start. Could not dup STDOUT, errno %d", errno);
|
||||||
res = FALSE;
|
res = FALSE;
|
||||||
goto beach;
|
goto beach;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue