pluginloader: Fix typos
authorMichael Catanzaro <mcatanzaro@gnome.org>
Sat, 21 Mar 2015 20:46:50 +0000 (15:46 -0500)
committerTim-Philipp Müller <tim@centricular.com>
Wed, 25 Mar 2015 23:36:54 +0000 (23:36 +0000)
https://bugzilla.gnome.org/show_bug.cgi?id=746585

gst/gstpluginloader.c

index fe64609983990cd4244b1d7cefd2f636478f29b1..dbd341dd1c6710e30a99d984f5286b96ec7393ed 100644 (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;
     }