From b28bd27932c671963cc79013ade44f0513d57ca8 Mon Sep 17 00:00:00 2001 From: Richard Kimberly Heck Date: Sat, 10 Oct 2020 10:00:16 -0400 Subject: [PATCH] Fix warning --- src/KeyMap.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()) { -- 2.39.2