pluginloader: Fix typos

https://bugzilla.gnome.org/show_bug.cgi?id=746585
This commit is contained in:
Michael Catanzaro 2015-03-21 15:46:50 -05:00 committed by Tim-Philipp Müller
parent 25295ee285
commit f718962467

View file

@ -544,7 +544,7 @@ _gst_plugin_loader_client_run (void)
dup_fd = dup (0); /* STDIN */
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;
goto beach;
}
@ -553,7 +553,7 @@ _gst_plugin_loader_client_run (void)
dup_fd = dup (1); /* STDOUT */
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;
goto beach;
}