From bcb4c3c71159afc80e8fd98a17e7a9be6963524e Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Fri, 6 Sep 2024 11:56:52 +0900 Subject: [PATCH] Minor tweak to listening port info output --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)))