mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-31 20:48:56 +00:00
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:
parent
9f58cab1f9
commit
a14e748c7b
2 changed files with 9 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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), \
|
||||
|
|
Loading…
Reference in a new issue