Skip to content

Commit

Permalink
Put in the MythDate use in logging timestamps
Browse files Browse the repository at this point in the history
This created a merge conflict, so I removed it.  Now putting it back.
  • Loading branch information
Beirdo committed Jun 11, 2012
1 parent 39908e5 commit f840288
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythbase/logging.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ void loggingGetTimeStamp(qlonglong *epoch, uint *usec)
*usec = tv.tv_usec;
#else
/* Stupid system has no gettimeofday, use less precise QDateTime */
QDateTime date = QDateTime::currentDateTime();
QDateTime date = MythDate::current();
*epoch = date.toTime_t();
if (usec)
{
Expand Down

0 comments on commit f840288

Please sign in to comment.