From 7d34a6b6e391ab5dabdec9dae5942a13419f625a Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Mon, 29 Aug 2011 09:39:06 +1000 Subject: [PATCH] Statify tv_sort. --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.c b/main.c index 7e2c3cf5..0fb28b59 100644 --- a/main.c +++ b/main.c @@ -2175,7 +2175,7 @@ static void test_work_current(struct work *work) free(hexstr); } -int tv_sort(struct work *worka, struct work *workb) +static int tv_sort(struct work *worka, struct work *workb) { return worka->tv_staged.tv_sec - workb->tv_staged.tv_sec; }