commit 73da168180856c913ae2bb32a5780d9c06112e8d parent c28d4b3b09625f80368add11b019574f1d7bc30f Author: Evgeny Grin (Karlson2k) <k2k@narod.ru> Date: Mon, 6 Nov 2017 22:42:58 +0300 daemon.c: fixed unneeded extra semicolon Diffstat:
| M | src/microhttpd/daemon.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c @@ -6423,7 +6423,7 @@ MHD_get_daemon_info (struct MHD_Daemon *daemon, return (const union MHD_DaemonInfo *) &daemon->port; default: return NULL; - }; + } }