From a14e748c7b441075798bfc40af8f2fbc50749d1d Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Tue, 6 Apr 2004 05:58:32 +0000 Subject: [PATCH] gst/gstinfo.h: *_FORMAT modifiers should require putting a % in front of them for consistency reasons. Original commit message from CVS: reviewed by David Schleef * gst/gstinfo.h: *_FORMAT modifiers should require putting a % in front of them for consistency reasons. --- ChangeLog | 8 ++++++++ gst/gstinfo.h | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 11ae122..06b7851 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2004-04-06 Benjamin Otte + + reviewed by David Schleef + + * gst/gstinfo.h: + *_FORMAT modifiers should require putting a % in front of them for + consistency reasons. + 2004-04-05 Colin Walters * configure.ac (VALGRIND_CFLAGS, VALGRIND_LIBS): Remove spurious diff --git a/gst/gstinfo.h b/gst/gstinfo.h index fd2ecc1..2d4e55e 100644 --- a/gst/gstinfo.h +++ b/gst/gstinfo.h @@ -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), \ -- 2.7.4