From faa1b5a44fcfe7693838fa3d7ccc9e6b64480b2f Mon Sep 17 00:00:00 2001 From: alba4k <84153269+alba4k@users.noreply.github.com> Date: Fri, 17 Jun 2022 22:02:57 +0200 Subject: [PATCH] Update main.cpp --- hyprctl/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hyprctl/main.cpp b/hyprctl/main.cpp index 278ef5ee..f60fb600 100644 --- a/hyprctl/main.cpp +++ b/hyprctl/main.cpp @@ -134,7 +134,7 @@ int main(int argc, char** argv) { else if (!strcmp(argv[1], "dispatch")) dispatchRequest(argc, argv); else if (!strcmp(argv[1], "keyword")) keywordRequest(argc, argv); else if (!strcmp(argv[1], "--batch")) batchRequest(argc, argv); - else if (!strcmp(argv[1], "--help")) printf(USAGE.c_str()); + else if (!strcmp(argv[1], "--help")) printf("%s", USAGE.c_str()); else { printf("%s\n", USAGE.c_str()); return 1; @@ -142,4 +142,4 @@ int main(int argc, char** argv) { printf("\n"); return 0; -} \ No newline at end of file +}