validate: fix typo in gst-validate-report.c
authorJinwoo Ahn <creator.ahn@gmail.com>
Wed, 5 Oct 2016 05:50:53 +0000 (14:50 +0900)
committerSebastian Dröge <sebastian@centricular.com>
Wed, 5 Oct 2016 09:37:30 +0000 (12:37 +0300)
parametter -> parameter

https://bugzilla.gnome.org/show_bug.cgi?id=772439

validate/gst/validate/gst-validate-report.c

index 1d70497..6d7a431 100644 (file)
@@ -925,7 +925,7 @@ gst_validate_print_action (GstValidateAction * action, const gchar * message)
 }
 
 static void
-print_action_parametter (GString * string, GstValidateActionType * type,
+print_action_parameter (GString * string, GstValidateActionType * type,
     GstValidateActionParameter * param)
 {
   gint nw = 0;
@@ -1038,13 +1038,13 @@ gst_validate_printf_valist (gpointer source, const gchar * format, va_list args)
       g_free (tmp);
 
       if (!IS_CONFIG_ACTION_TYPE (type->flags))
-        print_action_parametter (string, type, &playback_time_param);
+        print_action_parameter (string, type, &playback_time_param);
 
       if (type->parameters) {
         has_parameters = TRUE;
-        g_string_append_printf (string, "\n\n  Parametters:");
+        g_string_append_printf (string, "\n\n  Parameters:");
         for (i = 0; type->parameters[i].name; i++) {
-          print_action_parametter (string, type, &type->parameters[i]);
+          print_action_parameter (string, type, &type->parameters[i]);
         }
 
       }