gst/gstinfo.h: *_FORMAT modifiers should require putting a % in front of them for...
authorBenjamin Otte <otte@gnome.org>
Tue, 6 Apr 2004 05:58:32 +0000 (05:58 +0000)
committerBenjamin Otte <otte@gnome.org>
Tue, 6 Apr 2004 05:58:32 +0000 (05:58 +0000)
Original commit message from CVS:
reviewed by David Schleef <ds@schleef.org>
* gst/gstinfo.h:
*_FORMAT modifiers should require putting a % in front of them for
consistency reasons.

ChangeLog
gst/gstinfo.h

index 11ae122..06b7851 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2004-04-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
+
+       reviewed by David Schleef <ds@schleef.org>
+
+       * gst/gstinfo.h:
+         *_FORMAT modifiers should require putting a % in front of them for
+         consistency reasons.
+
 2004-04-05  Colin Walters  <walters@redhat.com>
 
        * configure.ac (VALGRIND_CFLAGS, VALGRIND_LIBS): Remove spurious
index fd2ecc1..2d4e55e 100644 (file)
@@ -522,7 +522,7 @@ G_CONST_RETURN gchar*
 void gst_debug_print_stack_trace (void);
 
 /* timestamp debugging macros */
-#define GST_TIME_FORMAT "%u:%02u:%02u:%09u"
+#define GST_TIME_FORMAT "u:%02u:%02u:%09u"
 #define GST_TIME_ARGS(t) \
        (guint) (t / (GST_SECOND * 60 * 60)), \
        (guint) ((t / (GST_SECOND * 60)) % 60), \