From 5c248d91cd5b7e9401e4393b2193ad44c32016bc Mon Sep 17 00:00:00 2001 From: Berthold Stoeger Date: Sat, 17 Feb 2018 21:21:16 +0100 Subject: Coding-style: remove superfluous parentheses Mostly replace "return (expression);" by "return expression;" and one case of "function((parameter))" by "function(parameter)". Signed-off-by: Berthold Stoeger --- core/exif.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/exif.cpp') 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); } -- cgit v1.2.3-70-g09d2