The branch, master, has been updated. - Log -----------------------------------------------------------------
commit be89d37bd42b9d260e47c9cd50c23fcb9886a870 Author: Richard Heck <[email protected]> Date: Thu May 31 12:02:21 2012 -0400 Properly initialize variable. This should fix the problem reported here: http://marc.info/?l=lyx-devel&m=133775786222603&w=2 by Scott. diff --git a/src/Converter.cpp b/src/Converter.cpp index d803309..e96ed7b 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) {} ----------------------------------------------------------------------- Summary of changes: src/Converter.cpp | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) hooks/post-receive -- The LyX Source Repository
