Changed fprintf(stdout,...) to printf(...) for more readable code

This commit is contained in:
SpizzyCoder 2021-01-16 19:49:44 +01:00 committed by Simon Ser
parent 915ba01ff1
commit 7cf25d3b98
4 changed files with 6 additions and 6 deletions

View file

@ -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: