mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-02 12:26:00 +01:00
Hyprctrl: Use printf format specifiers for the usage string
This commit is contained in:
parent
0132e52b13
commit
58f13efa30
1 changed files with 2 additions and 2 deletions
|
@ -132,7 +132,7 @@ int main(int argc, char** argv) {
|
|||
int bflag = 0, sflag = 0, index, c;
|
||||
|
||||
if (argc < 2) {
|
||||
printf(USAGE.c_str());
|
||||
printf("%s", USAGE.c_str());
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
@ -146,7 +146,7 @@ int main(int argc, char** argv) {
|
|||
else if (!strcmp(argv[1], "keyword")) keywordRequest(argc, argv);
|
||||
else if (!strcmp(argv[1], "--batch")) batchRequest(argc, argv);
|
||||
else {
|
||||
printf(USAGE.c_str());
|
||||
printf("%s", USAGE.c_str());
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue