From be89d37bd42b9d260e47c9cd50c23fcb9886a870 Mon Sep 17 00:00:00 2001 From: Richard Heck Date: Thu, 31 May 2012 12:02:21 -0400 Subject: [PATCH] Properly initialize variable. This should fix the problem reported here: http://marc.info/?l=lyx-devel&m=133775786222603&w=2 by Scott. --- src/Converter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Converter.cpp b/src/Converter.cpp index d803309dff..e96ed7b096 100644 --- a/src/Converter.cpp +++ b/src/Converter.cpp @@ -99,7 +99,7 @@ Converter::Converter(string const & f, string const & t, string const & c, string const & l) : from(f), to(t), command(c), flags(l), From(0), To(0), latex(false), xml(false), - need_aux(false) + need_aux(false), nice(false) {}