From 2642fa86ae877a0f6d1715258984b3c8aaf67211 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Wed, 9 May 2018 17:00:46 +0800 Subject: [PATCH] src/strip.vala --- src/strip.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/strip.vala b/src/strip.vala index 240def7..7220d9a 100644 --- a/src/strip.vala +++ b/src/strip.vala @@ -729,7 +729,7 @@ public class Strip : GLib.Object { var oldest = new DateTime.now_local(); oldest.add_months(-1 * StripApplication.opt_min_age); var tspan = mailtime.difference(oldest) / GLib.TimeSpan.DAY; - GLib.log("File is %d days older than %d", tspan, StripApplication.opt_min_age); + GLib.log("File is %d days older than %d", (int)tspan, StripApplication.opt_min_age); -- 2.39.2