From d8ab74a573970ede1fc8674a045eb2429d7e7881 Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Thu, 31 Jan 2013 22:02:02 +0100 Subject: overlap: Remove print_time (since its in util) --- src/overlap.c | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/src/overlap.c b/src/overlap.c index 771f2da..571e5b8 100644 --- a/src/overlap.c +++ b/src/overlap.c @@ -17,20 +17,6 @@ pswap(void **p1, void **p2) *p2 = tmp; } -/* print time in format: "hh:mm:ss.xxx" */ -static void -print_time(int64_t msec) { - - int hh = msec / 1000 / 60 / 60; - msec -= hh * 1000 * 60 * 60; - int mm = msec / 1000 / 60; - msec -= mm * 1000 * 60; - int ss = msec / 1000; - msec -= ss * 1000; - - printf("%02d:%02d:%02d.%03jd", hh, mm, ss, msec); -} - static void start_new_szene(int64_t prev_szene_end, int64_t start) { -- cgit