Add missing parenthesis (#1855)

This commit is contained in:
zosrothko 2017-08-20 23:15:38 +02:00 committed by Aleksandar Fabijanic
parent f6d201cfba
commit 59e2043652

View File

@ -222,7 +222,7 @@ Timestamp FileImpl::createdImpl() const
// a macro st_birthtime makes sure there is a st_birthtimespec (nano sec precision)
struct stat64 st;
if (stat64(_path.c_str(), &st) == 0)
return Timestamp(timespec2Microsecs(st.st_birthtimespec);
return Timestamp(timespec2Microsecs(st.st_birthtimespec));
#elif defined(__FreeBSD__) && defined(st_birthtime)
// a macro st_birthtime makes sure there is a st_birthtimespec (nano sec precision)
struct stat st;