tools/gst-inspect.c: Fix two typos.

Original commit message from CVS:
* tools/gst-inspect.c: (print_element_properties_info):
Fix two typos.
This commit is contained in:
Tim-Philipp Müller 2005-09-20 17:21:13 +00:00
parent 440b1e419a
commit d30a4eb913
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2005-09-20 Tim-Philipp Müller <tim at centricular dot net>
* tools/gst-inspect.c: (print_element_properties_info):
Fix two typos.
2005-09-20 Thomas Vander Stichele <thomas at apestaart dot org>
* check/gst/gstevent.c:

View file

@ -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) {