* Buffer.cpp: squash compiler warning.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@30463 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jürgen Spitzmüller 2009-07-11 06:50:18 +00:00
parent eab8801afe
commit ca070ea260

View File

@ -487,8 +487,8 @@ string Buffer::logName(LogType * type) const
return bname.absFilename();
// If we have a newer master file log or only a master log, show this
} else if (fname != masterfname
&& (!fname.exists() && masterfname.exists()
|| fname.lastModified() < masterfname.lastModified())) {
&& (!fname.exists() && (masterfname.exists()
|| fname.lastModified() < masterfname.lastModified()))) {
LYXERR(Debug::FILES, "Log name calculated as: " << masterfname);
if (type)
*type = mtype;