From: Abdelrazak Younes Date: Sat, 20 Oct 2007 20:44:23 +0000 (+0000) Subject: shut down an MSVC warning. X-Git-Tag: 1.6.10~7746 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=329a8db14abf6a236c94c7902891a2ca9be919f4;p=features.git shut down an MSVC warning. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21089 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/DepTable.cpp b/src/DepTable.cpp index 4613405583..e8258dc419 100644 --- a/src/DepTable.cpp +++ b/src/DepTable.cpp @@ -59,7 +59,7 @@ void DepTable::insert(FileName const & f, bool upd) LYXERR(Debug::DEPEND) << "done." << endl; struct stat f_info; stat(f.toFilesystemEncoding().c_str(), &f_info); - di.mtime_cur = f_info.st_mtime; + di.mtime_cur = long(f_info.st_mtime); } else { di.crc_cur = 0; di.mtime_cur = 0;