From 4f50fced8887524ea40932337a1c9d1d3eb3665c Mon Sep 17 00:00:00 2001 From: Marcus Holland-Moritz Date: Tue, 8 Dec 2020 16:39:41 +0100 Subject: [PATCH] Initialize uninitialized variable --- src/dwarfsck.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dwarfsck.cpp b/src/dwarfsck.cpp index e5a56a2b..0bfd5f35 100644 --- a/src/dwarfsck.cpp +++ b/src/dwarfsck.cpp @@ -39,7 +39,7 @@ namespace po = boost::program_options; int dwarfsck(int argc, char** argv) { std::string log_level, input; int detail; - bool json; + bool json = false; // clang-format off po::options_description opts("Command line options");