From 3ee1e93e32d8b0fae8b0af8637c2ad60e7d938a2 Mon Sep 17 00:00:00 2001 From: svenhoefer Date: Thu, 25 Apr 2019 22:40:11 +0200 Subject: [PATCH] - eventlist: fix warnings in console output for timer conflicts Signed-off-by: Thilo Graf --- src/gui/eventlist.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/eventlist.cpp b/src/gui/eventlist.cpp index 330587eac..0de7abd4a 100644 --- a/src/gui/eventlist.cpp +++ b/src/gui/eventlist.cpp @@ -818,7 +818,7 @@ void CEventList::paintItem(unsigned int pos, t_channel_id channel_idI) // detecting timer conflict and set start position of event text depending of possible painted icon bool conflict = HasTimerConflicts(evtlist[currpos].startTime, evtlist[currpos].duration, &item_event_ID); - //printf ("etype %d , conflicts %d -> %s, conflict event_ID %d -> current event_ID %d\n", etype, conflict, evtlist[currpos].description.c_str(), item_event_ID, evtlist[currpos].eventID); + //printf("etype %d , conflicts %d -> %s, conflict event_ID %lld -> current event_ID %lld\n", etype, conflict, evtlist[currpos].description.c_str(), item_event_ID, evtlist[currpos].eventID); int i2w = 0, i2h = 0; if (conflict && item_event_ID != evtlist[currpos].eventID)