mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
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:
parent
440b1e419a
commit
d30a4eb913
2 changed files with 7 additions and 2 deletions
|
@ -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:
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue