mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 13:21:28 +00:00
tools/tools.h: gst_version is unsigned, I need to use gcc 4
Original commit message from CVS: * tools/tools.h: gst_version is unsigned, I need to use gcc 4
This commit is contained in:
parent
cf2c17a13d
commit
7c04560a0b
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2005-07-24 Benjamin Otte <otte@gnome.org>
|
||||
|
||||
* tools/tools.h:
|
||||
gst_version is unsigned, I need to use gcc 4
|
||||
|
||||
2005-07-24 Benjamin Otte <otte@gnome.org>
|
||||
|
||||
* po/POTFILES.in:
|
||||
|
|
|
@ -47,13 +47,13 @@ void
|
|||
gst_tools_print_version (const char *program)
|
||||
{
|
||||
if (__gst_tools_version) {
|
||||
gint major, minor, micro;
|
||||
guint major, minor, micro;
|
||||
|
||||
gst_version (&major, &minor, µ);
|
||||
g_print ("GStreamer (%s) %s %s\n\n", program, GST_PACKAGE, GST_VERSION);
|
||||
g_print ("provided by %s\n", GST_ORIGIN);
|
||||
g_print ("release %s\n", GST_VERSION_RELEASE);
|
||||
g_print ("using GStreamer Core Library version %d.%d.%d\n", major, minor, micro);
|
||||
g_print ("using GStreamer Core Library version %u.%u.%u\n", major, minor, micro);
|
||||
exit (0);
|
||||
}
|
||||
g_set_prgname (program);
|
||||
|
|
Loading…
Reference in a new issue