From cebb05a83431a615923da9c03b6f595e76699f67 Mon Sep 17 00:00:00 2001 From: Francesco Date: Fri, 6 Mar 2026 01:54:16 +0100 Subject: [PATCH] refactor(readme): remove doxygen requirement --- README.md | 1 - src/core/worker.c | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 9df868d..f7df132 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,6 @@ A minimal HTTP web server written in C. - myclib (on my profile) - [tomlc17](https://github.com/cktan/tomlc17) -- [doxygen](https://www.doxygen.nl/) (optional, for documentation only - requires `dot`) ## Build diff --git a/src/core/worker.c b/src/core/worker.c index c55c8e7..b8a0a67 100644 --- a/src/core/worker.c +++ b/src/core/worker.c @@ -35,7 +35,7 @@ static cws_vhost_s *get_vhost(cws_config_s *config, char *host) { } } - /* ?? */ + /* This should not happen */ return NULL; }