commit 7cf25d3b987ff00a644bf5b6910a366f93029bbe
parent 915ba01ff1388028a85156feb08e9296c356a696
Author: SpizzyCoder <spizzycoder@protonmail.com>
Date: Sat, 16 Jan 2021 19:49:44 +0100
Changed fprintf(stdout,...) to printf(...) for more readable code
Diffstat:
4 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/sway/main.c b/sway/main.c
@@ -281,7 +281,7 @@ int main(int argc, char **argv) {
}
switch (c) {
case 'h': // help
- fprintf(stdout, "%s", usage);
+ printf("%s", usage);
exit(EXIT_SUCCESS);
break;
case 'c': // config
@@ -301,7 +301,7 @@ int main(int argc, char **argv) {
allow_unsupported_gpu = 1;
break;
case 'v': // version
- fprintf(stdout, "sway version " SWAY_VERSION "\n");
+ printf("sway version " SWAY_VERSION "\n");
exit(EXIT_SUCCESS);
break;
case 'V': // verbose
@@ -309,7 +309,7 @@ int main(int argc, char **argv) {
break;
case 'p': ; // --get-socketpath
if (getenv("SWAYSOCK")) {
- fprintf(stdout, "%s\n", getenv("SWAYSOCK"));
+ printf("%s\n", getenv("SWAYSOCK"));
exit(EXIT_SUCCESS);
} else {
fprintf(stderr, "sway socket not detected.\n");
diff --git a/swaybar/main.c b/swaybar/main.c
@@ -55,7 +55,7 @@ int main(int argc, char **argv) {
swaybar.id = strdup(optarg);
break;
case 'v':
- fprintf(stdout, "swaybar version " SWAY_VERSION "\n");
+ printf("swaybar version " SWAY_VERSION "\n");
exit(EXIT_SUCCESS);
break;
case 'd': // Debug
diff --git a/swaymsg/main.c b/swaymsg/main.c
@@ -396,7 +396,7 @@ int main(int argc, char **argv) {
cmdtype = strdup(optarg);
break;
case 'v':
- fprintf(stdout, "swaymsg version " SWAY_VERSION "\n");
+ printf("swaymsg version " SWAY_VERSION "\n");
exit(EXIT_SUCCESS);
break;
default:
diff --git a/swaynag/config.c b/swaynag/config.c
@@ -234,7 +234,7 @@ int swaynag_parse_options(int argc, char **argv, struct swaynag *swaynag,
}
break;
case 'v': // Version
- fprintf(stdout, "swaynag version " SWAY_VERSION "\n");
+ printf("swaynag version " SWAY_VERSION "\n");
return -1;
case TO_COLOR_BACKGROUND: // Background color
if (type && !parse_color(optarg, &type->background)) {