diff --git a/src/main.c b/src/main.c index c87787b..23f5ed7 100644 --- a/src/main.c +++ b/src/main.c @@ -50,11 +50,11 @@ int main(int argc, char *argv[]) { } if (strcmp(argv[i], "-h") == 0 || strcmp(argv[i], "--help") == 0) { - fprintf(stderr, "%s: modular fetch [%s]\n", PNAME, svtoa(VERSION)); - fprintf(stderr, "\n"); - fprintf(stderr, "OPTIONS\n"); - fprintf(stderr, "\t-h, --help\t\t\tdisplays this help text\n"); - fprintf(stderr, "\t-c, --config /path/to/config\tchanges config path from the default ($XDG_CONFIG_HOME/%s.conf)\n", PNAME); + printf("%s: modular fetch [%s]\n", PNAME, svtoa(VERSION)); + printf("\n"); + printf("OPTIONS\n"); + printf("\t-h, --help\t\t\tdisplays this help text\n"); + printf("\t-c, --config /path/to/config\tchanges config path from the default ($XDG_CONFIG_HOME/%s.conf)\n", PNAME); exit(EXIT_SUCCESS); } }