From 52cbca167543b26e203321477e80a3dd5cef42a4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andr=C3=A9=20P=C3=B6nitz?= Date: Wed, 27 Nov 2002 11:49:06 +0000 Subject: [PATCH] revert "." -> '.' to make it compile git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5726 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/support/filetools.C | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/support/filetools.C b/src/support/filetools.C index 7e58026b45..2b59efe323 100644 --- a/src/support/filetools.C +++ b/src/support/filetools.C @@ -213,7 +213,7 @@ vector const DirList(string const & dir, string const & ext) // This is a non-error checking C/system implementation string extension(ext); if (!extension.empty() && extension[0] != '.') - extension.insert(0, 1, '.'); + extension.insert(0, 1, "."); vector dirlist; DIR * dirp = ::opendir(dir.c_str()); if (!dirp) { -- 2.39.2