Changed fprintf(stdout,...) to printf(...) for more readable code because its basically the same

This commit is contained in:
SpizzyCoder 2021-01-15 17:30:40 +01:00
parent 683ff88015
commit 7b87213f16

View file

@ -283,7 +283,7 @@ int main(int argc, char **argv) {
} }
switch (c) { switch (c) {
case 'h': // help case 'h': // help
fprintf(stdout, "%s", usage); printf("%s", usage);
exit(EXIT_SUCCESS); exit(EXIT_SUCCESS);
break; break;
case 'c': // config case 'c': // config
@ -303,7 +303,7 @@ int main(int argc, char **argv) {
allow_unsupported_gpu = 1; allow_unsupported_gpu = 1;
break; break;
case 'v': // version case 'v': // version
fprintf(stdout, "sway version " SWAY_VERSION "\n"); printf("sway version " SWAY_VERSION "\n");
exit(EXIT_SUCCESS); exit(EXIT_SUCCESS);
break; break;
case 'V': // verbose case 'V': // verbose
@ -311,7 +311,7 @@ int main(int argc, char **argv) {
break; break;
case 'p': ; // --get-socketpath case 'p': ; // --get-socketpath
if (getenv("SWAYSOCK")) { if (getenv("SWAYSOCK")) {
fprintf(stdout, "%s\n", getenv("SWAYSOCK")); printf("%s\n", getenv("SWAYSOCK"));
exit(EXIT_SUCCESS); exit(EXIT_SUCCESS);
} else { } else {
fprintf(stderr, "sway socket not detected.\n"); fprintf(stderr, "sway socket not detected.\n");