diff options
Diffstat (limited to 'Source/kwsys')
-rw-r--r-- | Source/kwsys/SystemTools.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/kwsys/SystemTools.cxx b/Source/kwsys/SystemTools.cxx index e9d72ed..b3d92e8 100644 --- a/Source/kwsys/SystemTools.cxx +++ b/Source/kwsys/SystemTools.cxx @@ -865,7 +865,7 @@ bool SystemTools::Touch(const char* filename, bool create) } struct utimbuf buf; buf.actime = fromStat.st_atime; - buf.modtime = SystemTools::GetTime(); + buf.modtime = static_cast<time_t>(SystemTools::GetTime()); if(utime(filename, &buf) < 0) { return false; |