Skip to content

Commit

Permalink
Fix compiler warning in dbg_eval
Browse files Browse the repository at this point in the history
refs #12534
  • Loading branch information
gunnarbeutner committed Aug 25, 2016
1 parent 288413f commit 8ed21fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/cli/consolecommand.cpp
Expand Up @@ -68,7 +68,7 @@ extern "C" void dbg_inspect_object(Object *obj)

extern "C" void dbg_eval(const char *text)
{
Expression *expr;
Expression *expr = NULL;

try {
ScriptFrame frame;
Expand Down

0 comments on commit 8ed21fc

Please sign in to comment.