From 51e12be9a737450e095cbb7e8d66772ebddfab92 Mon Sep 17 00:00:00 2001 From: Username404 Date: Fri, 12 Nov 2021 22:20:09 +0100 Subject: [PATCH] Remove a useless space in main.cpp --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 5d7ad8a..ed11743 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -39,7 +39,7 @@ int main(int argc, char* argv[]) { if (currentArg == Argument("version")) { cout << Yerbacon::getVersion(); } else if (currentArg == Argument("buildInfo")) { - cout << Yerbacon::getBuildInfo() ; + cout << Yerbacon::getBuildInfo(); } else goto invalid_argument; cout << endl; exit(EXIT_SUCCESS); } else invalid_argument: Yerbacon::exit({"\"", currentArg.data(), "\" is not a valid argument."});