From edad2f39db6d7ad4bcb41d04298b87c0de26fe1a Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Wed, 9 Nov 2011 18:14:23 +0100 Subject: Removed unused parameter from apoint_sec2str() This is no longer needed as of commit 2d89d336. Signed-off-by: Lukas Fleischer --- src/day.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/day.c') diff --git a/src/day.c b/src/day.c index 73c8ada..58539d7 100644 --- a/src/day.c +++ b/src/day.c @@ -327,7 +327,7 @@ display_item_date (int incolor, struct apoint *i, int type, long date, int recur = 0; win = apad.ptrwin; - apoint_sec2str (i, type, date, a_st, a_end); + apoint_sec2str (i, date, a_st, a_end); if (type == RECUR_EVNT || type == RECUR_APPT) recur = 1; if (incolor == 0) @@ -440,8 +440,8 @@ day_write_pad (long date, int width, int length, int incolor) { day_saved_item.type = day->type; day_saved_item.mesg = day->mesg; - apoint_sec2str (&a, day->type, date, - day_saved_item.start, day_saved_item.end); + apoint_sec2str (&a, date, day_saved_item.start, + day_saved_item.end); } display_item_date (item_number - incolor, &a, day->type, date, line + 1, x_pos); -- cgit v1.2.3-54-g00ecf