WIN32 compile fix.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21637 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Abdelrazak Younes 2007-11-16 11:26:05 +00:00
parent 72e3177e3d
commit ded737b109

View File

@ -247,7 +247,7 @@ string latex_path(string const & p)
string const drive = p.substr(0, 2);
string const cygprefix = cygdrive + "/" + drive.substr(0, 1);
string const cygpath = subst(subst(p, '\\', '/'), drive, cygprefix);
LYXERR(Debug::LATEX, << "<Path correction for LaTeX> ["
LYXERR(Debug::LATEX, "<Path correction for LaTeX> ["
<< p << "]->>[" << cygpath << ']');
return cygpath;
}