From: Carl Hetherington Date: Thu, 12 Nov 2015 21:28:06 +0000 (+0000) Subject: Merge branch 'master' of ssh://git.carlh.net/home/carl/git/dcpomatic X-Git-Tag: v2.5.2~2 X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=ad3e8cff006ccecdb44520f8cc8fd1eaa8daf755;hp=40c9b0940f1f1b96456cfbf5bbe3ab402166b454 Merge branch 'master' of ssh://git.carlh.net/home/carl/git/dcpomatic --- diff --git a/src/lib/log_entry.cc b/src/lib/log_entry.cc index ea2d22462..d29b56747 100644 --- a/src/lib/log_entry.cc +++ b/src/lib/log_entry.cc @@ -43,7 +43,7 @@ LogEntry::get () const { SafeStringStream s; if (_type & TYPE_TIMING) { - s << _time.tv_sec << ":" << _time.tv_usec; + s << _time.tv_sec << ":" << _time.tv_usec << " "; } else { char buffer[64]; time_t const sec = _time.tv_sec;