diff options
Diffstat (limited to 'core/exif.cpp')
-rw-r--r-- | core/exif.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/exif.cpp b/core/exif.cpp index 8c47a514f..17983a0ff 100644 --- a/core/exif.cpp +++ b/core/exif.cpp @@ -897,6 +897,6 @@ time_t easyexif::EXIFInfo::epoch() tm.tm_hour = hour; tm.tm_min = min; tm.tm_sec = sec; - return (utc_mktime(&tm)); + return utc_mktime(&tm); } |