From b11e3b0a234f9da863dd63443e5d1a0bc2283a2d Mon Sep 17 00:00:00 2001
From: Simon Morlat <simon.morlat@linphone.org>
Date: Fri, 8 Feb 2013 11:01:26 +0100
Subject: [PATCH] fix compilation bug

---
 gtk/calllogs.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gtk/calllogs.c b/gtk/calllogs.c
index 4a9330f4af..9e703a8ffd 100644
--- a/gtk/calllogs.c
+++ b/gtk/calllogs.c
@@ -68,7 +68,7 @@ void linphone_gtk_call_log_update(GtkWidget *w){
 			g_date_time_unref(dt);
 		}
 #else
-		start_date=g_strdup(ctime(start_date_time));
+		start_date=g_strdup(ctime(&start_date_time));
 #endif
 		
 		display=linphone_address_get_display_name (la);
-- 
GitLab