ext/annodex/gstcmmlutils.c: Fix build.

Original commit message from CVS:
* ext/annodex/gstcmmlutils.c: (gst_cmml_clock_time_from_npt):
Fix build.
This commit is contained in:
Wim Taymans 2006-08-25 09:53:18 +00:00
parent 2f4517a70b
commit bccaea232b
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2006-08-25 Wim Taymans <wim@fluendo.com>
* ext/annodex/gstcmmlutils.c: (gst_cmml_clock_time_from_npt):
Fix build.
2006-08-25 Wim Taymans <wim@fluendo.com>
Patch by: Alessandro Decina <alessandro at nnva dot org>

View file

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