From: Richard Kimberly Heck Date: Sat, 10 Oct 2020 14:00:16 +0000 (-0400) Subject: Fix warning X-Git-Tag: lyx-2.4.0dev-acb2ca7b~103 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=b28bd27932c671963cc79013ade44f0513d57ca8;p=features.git Fix warning --- diff --git a/src/KeyMap.cpp b/src/KeyMap.cpp index c5c387f28f..3698ddb642 100644 --- a/src/KeyMap.cpp +++ b/src/KeyMap.cpp @@ -299,7 +299,7 @@ KeyMap::ReturnValues KeyMap::readWithoutConv(FileName const & bind_file, KeyMap LYXERR(Debug::KBMAP, "Reading bind file:" << bind_file.absFileName()); // format of pre-2.0 bind files, before this tag was introduced. - unsigned int format = 0; + int format = 0; bool error = false; while (lexrc.isOK()) { switch (lexrc.lex()) {