summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Otte <otte@gnome.org>2005-07-24 21:38:44 +0000
committerBenjamin Otte <otte@gnome.org>2005-07-24 21:38:44 +0000
commit7c04560a0ba7106cba9307ea4228f5439f3b5040 (patch)
treedccbe8ae344bb4adff281f4fd5d113516b884206
parentcf2c17a13dd2e436130ebc8bb3b85a2da5260e57 (diff)
downloadgstreamer-7c04560a0ba7106cba9307ea4228f5439f3b5040.tar.gz
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
-rw-r--r--ChangeLog5
-rw-r--r--tools/tools.h4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index b3243433db..5948291875 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
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:
* tools/Makefile.am:
* tools/tools.h:
diff --git a/tools/tools.h b/tools/tools.h
index 7899561923..f36212fbe0 100644
--- a/tools/tools.h
+++ b/tools/tools.h
@@ -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, &micro);
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);