From cc5b44cb1cd0021a088b672a18dfc0ee533acf7f Mon Sep 17 00:00:00 2001 From: Enrico Forestieri Date: Thu, 25 Jan 2007 02:06:06 +0000 Subject: [PATCH] Fix compiler warning about multi-character constant git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16845 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/tex2lyx/tex2lyx.C | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tex2lyx/tex2lyx.C b/src/tex2lyx/tex2lyx.C index 2baf0e8550..0f0c45fc90 100644 --- a/src/tex2lyx/tex2lyx.C +++ b/src/tex2lyx/tex2lyx.C @@ -524,7 +524,7 @@ int main(int argc, char * argv[]) cl_system_support, cl_user_support, support::top_build_dir_is_two_levels_up); } catch (support::ExceptionMessage const & message) { - cerr << to_utf8(message.title_) << ':\n' + cerr << to_utf8(message.title_) << ":\n" << to_utf8(message.details_) << endl; if (message.type_ == support::ErrorException) exit(1);