From 869f0a023888b6c9a214814c56192e922542c970 Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Wed, 30 Nov 2022 13:33:21 +0000 Subject: [PATCH] remove global var --- src/main.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 9f34c088..77aece7a 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -5,10 +5,6 @@ #include "init/initHelpers.hpp" #include -// I am a bad bad boy and have used some global vars here, -// just for this file -bool ignoreSudo = false; - int main(int argc, char** argv) { if (!getenv("XDG_RUNTIME_DIR")) @@ -24,6 +20,7 @@ int main(int argc, char** argv) { // parse some args std::string configPath; + bool ignoreSudo = false; for (int i = 1; i < argc; ++i) { if (!strcmp(argv[i], "--i-am-really-stupid")) ignoreSudo = true;