From d30a4eb9136522ea952ee889a61bc6f529546b59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Tue, 20 Sep 2005 17:21:13 +0000 Subject: [PATCH] tools/gst-inspect.c: Fix two typos. Original commit message from CVS: * tools/gst-inspect.c: (print_element_properties_info): Fix two typos. --- ChangeLog | 5 +++++ tools/gst-inspect.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 82a219d2a2..16fb5770cf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-09-20 Tim-Philipp Müller + + * tools/gst-inspect.c: (print_element_properties_info): + Fix two typos. + 2005-09-20 Thomas Vander Stichele * check/gst/gstevent.c: diff --git a/tools/gst-inspect.c b/tools/gst-inspect.c index 77ee3cc3ac..0cfc20947a 100644 --- a/tools/gst-inspect.c +++ b/tools/gst-inspect.c @@ -284,11 +284,11 @@ print_element_properties_info (GstElement * element) g_param_spec_get_blurb (param)); first_flag = TRUE; - n_print ("%-23.23s flags:. ", ""); + n_print ("%-23.23s flags: ", ""); if (param->flags & G_PARAM_READABLE) { g_object_get_property (G_OBJECT (element), param->name, &value); readable = TRUE; - g_print ((first_flag ? "readable" : ", readble")); + g_print ((first_flag ? "readable" : ", readable")); first_flag = FALSE; } if (param->flags & G_PARAM_WRITABLE) {