From 0f812b0e41886acb3a924b81b7410e9691664777 Mon Sep 17 00:00:00 2001 From: Richard Heck Date: Fri, 23 Feb 2018 23:38:31 -0500 Subject: [PATCH] Fix bug #10909. --- src/CmdDef.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/CmdDef.cpp b/src/CmdDef.cpp index 7f2f0a654c..8a480bd4df 100644 --- a/src/CmdDef.cpp +++ b/src/CmdDef.cpp @@ -99,8 +99,8 @@ bool CmdDef::read(string const & def_file) } case BN_DEFFILE: if (lex.next()) { - string const tmp = lex.getString(); - error |= !read(tmp); + string const stmp = lex.getString(); + error |= !read(stmp); } else { lex.printError("BN_DEFFILE: Missing file name"); error = true; -- 2.39.5