Skip to content

Commit

Permalink
repl: Fix unused variable.
Browse files Browse the repository at this point in the history
  • Loading branch information
xlauko committed Oct 8, 2024
1 parent 4f8ea4b commit d987367
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/vast-repl/vast-repl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ namespace vast::repl

while (!cli.exit()) {
std::string cmd;
if (auto quit = linenoise::Readline("> ", cmd)) {
if (linenoise::Readline("> ", cmd)) {
break;
}

Expand Down

0 comments on commit d987367

Please sign in to comment.