After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 322958 - typo in example code for gstreamer initialization
typo in example code for gstreamer initialization
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: documentation
0.9.6
Other All
: Normal minor
: 0.10.0
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2005-12-01 20:05 UTC by Nils Rennebarth
Modified: 2005-12-04 19:14 UTC
See Also:
GNOME target: ---
GNOME version: 2.7/2.8



Description Nils Rennebarth 2005-12-01 20:05:14 UTC
Documentation bug
Section: Section "Gst" of the GStreamer 0.9 Core Reference Manual
g_print ("Error initializing: s\n", GST_STR_NULL (err->message));

Correct version:
g_print ("Error initializing: %s\n", GST_STR_NULL (err->message));

Other information:
Comment 1 Michael Smith 2005-12-01 23:56:17 UTC
Fixed; thanks.