From: Stephen Seo Date: Fri, 6 Sep 2024 02:56:52 +0000 (+0900) Subject: Minor tweak to listening port info output X-Git-Tag: 1.0~76 X-Git-Url: https://git.seodisparate.com/stephenseo/js/darkmode.js?a=commitdiff_plain;h=bcb4c3c71159afc80e8fd98a17e7a9be6963524e;p=c_simple_http Minor tweak to listening port info output --- diff --git a/src/main.c b/src/main.c index c0f83fd..de9211b 100644 --- a/src/main.c +++ b/src/main.c @@ -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)))