From bccaea232becc7034cc43a9fca121b316a31f387 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Fri, 25 Aug 2006 09:53:18 +0000 Subject: ext/annodex/gstcmmlutils.c: Fix build. Original commit message from CVS: * ext/annodex/gstcmmlutils.c: (gst_cmml_clock_time_from_npt): Fix build. --- ext/annodex/gstcmmlutils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/annodex/gstcmmlutils.c') diff --git a/ext/annodex/gstcmmlutils.c b/ext/annodex/gstcmmlutils.c index 48f7fb05..6dfe967b 100644 --- a/ext/annodex/gstcmmlutils.c +++ b/ext/annodex/gstcmmlutils.c @@ -63,7 +63,7 @@ gst_cmml_clock_time_from_npt (const gchar * time) /* parse npt-sec */ hours_t = 0; minutes = 0; - fields = sscanf (time, "%llu.%d", &u64seconds, &mseconds); + fields = sscanf (time, "%" G_GUINT64_FORMAT ".%d", &u64seconds, &mseconds); if (seconds < 0) goto bad_input; -- cgit