X-Git-Url: http://git.videolan.org/?p=vlc.git;a=blobdiff_plain;f=modules%2Fgui%2Fmacosx%2FVLCBookmarksWindowController.m;h=d69043097525af30485f774147e95d0df28b0fe5;hp=e3043b56fbeb13980372df169b598b1f3f93b375;hb=c245cdbcabd2da6201c3fce0450a8f59e3811109;hpb=1f77da0ff22e654915341025993f6279c9155c00 diff --git a/modules/gui/macosx/VLCBookmarksWindowController.m b/modules/gui/macosx/VLCBookmarksWindowController.m index e3043b56fb..d690430975 100644 --- a/modules/gui/macosx/VLCBookmarksWindowController.m +++ b/modules/gui/macosx/VLCBookmarksWindowController.m @@ -341,11 +341,11 @@ clear: assert(bookmark != NULL); mtime_t total = bookmark->i_time_offset; - unsigned hour = ( total / ( CLOCK_FREQ * 3600 ) ); - unsigned min = ( total % ( CLOCK_FREQ * 3600 ) ) / ( CLOCK_FREQ * 60 ); + uint64_t hour = ( total / ( CLOCK_FREQ * 3600 ) ); + uint64_t min = ( total % ( CLOCK_FREQ * 3600 ) ) / ( CLOCK_FREQ * 60 ); float sec = ( total % ( CLOCK_FREQ * 60 ) ) / ( CLOCK_FREQ * 1. ); - return [NSString stringWithFormat:@"%02d:%02d:%06.3f", hour, min, sec]; + return [NSString stringWithFormat:@"%02llu:%02llu:%06.3f", hour, min, sec]; } /*****************************************************************************