summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Franzke <benjaminfranzke@googlemail.com>2013-01-31 22:02:02 +0100
committerBenjamin Franzke <benjaminfranzke@googlemail.com>2013-01-31 22:02:02 +0100
commitd8ab74a573970ede1fc8674a045eb2429d7e7881 (patch)
tree89a38b08f7bcf1f7e2664e1e7d7b6ae75ed2e527
parentef1f5954e6fb0f534e9cbb2b5c51072896abab52 (diff)
downloadadvtime-d8ab74a573970ede1fc8674a045eb2429d7e7881.tar.gz
advtime-d8ab74a573970ede1fc8674a045eb2429d7e7881.tar.bz2
advtime-d8ab74a573970ede1fc8674a045eb2429d7e7881.zip
overlap: Remove print_time (since its in util)
-rw-r--r--src/overlap.c14
1 files changed, 0 insertions, 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)
{