Minor tweak to listening port info output
All checks were successful
Run Unit Tests / build-and-run-unit-tests (push) Successful in 32s

This commit is contained in:
Stephen Seo 2024-09-06 11:56:52 +09:00
parent 9be6ac32bf
commit bcb4c3c711

View file

@ -48,7 +48,7 @@ int main(int argc, char **argv) {
return 2;
}
printf("%u\n", args.port);
printf("listening on port: %u\n", args.port);
printf("config file is: %s\n", args.config_file);
__attribute__((cleanup(c_simple_http_clean_up_parsed_config)))