X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Femailer.cc;h=7edad20b1d41de299e84dba3ae5558460866f6f6;hb=85c2c9250f86dcc685b6e93e1e671a64cc0a24f3;hp=8effc19bcf6de0d51f7cb82733af7a2760d53a7c;hpb=d0ca1c2dc93c9f2747b84e3243e3edffba93bf19;p=dcpomatic.git diff --git a/src/lib/emailer.cc b/src/lib/emailer.cc index 8effc19bc..7edad20b1 100644 --- a/src/lib/emailer.cc +++ b/src/lib/emailer.cc @@ -108,7 +108,7 @@ Emailer::send (string server, int port, string user, string password) boost::posix_time::ptime const utc_now = boost::posix_time::second_clock::universal_time (); boost::posix_time::ptime const local_now = boost::date_time::c_local_adjustor::utc_to_local (utc_now); boost::posix_time::time_duration offset = local_now - utc_now; - sprintf (date_buffer + strlen(date_buffer), "%s%02d%02d", (offset.hours() >= 0 ? "+" : "-"), abs (offset.hours()), offset.minutes()); + sprintf (date_buffer + strlen(date_buffer), "%s%02d%02d", (offset.hours() >= 0 ? "+" : "-"), int(abs(offset.hours())), int(offset.minutes())); _email = "Date: " + string(date_buffer) + "\r\n" "To: " + address_list (_to) + "\r\n"