diff options
| author | Carl Hetherington <cth@carlh.net> | 2017-10-08 22:31:22 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2017-10-08 22:31:22 +0100 |
| commit | 85c2c9250f86dcc685b6e93e1e671a64cc0a24f3 (patch) | |
| tree | dfd73bfa8c293507e4097bc06422bd2c597a495f /src/lib/job.cc | |
| parent | d0ca1c2dc93c9f2747b84e3243e3edffba93bf19 (diff) | |
Fix some warnings (part of #1135).
Diffstat (limited to 'src/lib/job.cc')
| -rw-r--r-- | src/lib/job.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/job.cc b/src/lib/job.cc index b5be02b4c..61c5b3767 100644 --- a/src/lib/job.cc +++ b/src/lib/job.cc @@ -425,8 +425,8 @@ Job::status () const if (t > 10 && r > 0) { boost::posix_time::ptime now = boost::posix_time::second_clock::local_time(); boost::posix_time::ptime finish = now + boost::posix_time::seconds(r); - char finish_string[6]; - snprintf (finish_string, sizeof(finish_string), "%02d:%02d", finish.time_of_day().hours(), finish.time_of_day().minutes()); + char finish_string[16]; + snprintf (finish_string, sizeof(finish_string), "%02d:%02d", int(finish.time_of_day().hours()), int(finish.time_of_day().minutes())); string day; if (now.date() != finish.date()) { /// TRANSLATORS: the %1 in this string will be filled in with a day of the week |
