From ded737b109e884ba0024b2cd453fae1be36303f5 Mon Sep 17 00:00:00 2001 From: Abdelrazak Younes Date: Fri, 16 Nov 2007 11:26:05 +0000 Subject: [PATCH] WIN32 compile fix. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21637 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/support/os_win32.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/support/os_win32.cpp b/src/support/os_win32.cpp index a4f98e07c3..1d8c209d9c 100644 --- a/src/support/os_win32.cpp +++ b/src/support/os_win32.cpp @@ -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, << " [" + LYXERR(Debug::LATEX, " [" << p << "]->>[" << cygpath << ']'); return cygpath; }