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 <ds@schleef.org>
* gst/gstinfo.h:
*_FORMAT modifiers should require putting a % in front of them for
consistency reasons.
This commit is contained in:
Benjamin Otte 2004-04-06 05:58:32 +00:00
parent 9f58cab1f9
commit a14e748c7b
2 changed files with 9 additions and 1 deletions

View file

@ -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

View 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), \