From 329a8db14abf6a236c94c7902891a2ca9be919f4 Mon Sep 17 00:00:00 2001 From: Abdelrazak Younes Date: Sat, 20 Oct 2007 20:44:23 +0000 Subject: [PATCH] shut down an MSVC warning. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21089 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/DepTable.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.2