diff --git a/ChangeLog b/ChangeLog index 0eb67752a2..de33daf518 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-08-25 Wim Taymans + + * ext/annodex/gstcmmlutils.c: (gst_cmml_clock_time_from_npt): + Fix build. + 2006-08-25 Wim Taymans Patch by: Alessandro Decina diff --git a/ext/annodex/gstcmmlutils.c b/ext/annodex/gstcmmlutils.c index 48f7fb056a..6dfe967b62 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;