commit df6c90887882eeec03bd69e28752b63781e6341e
parent e8d937beb5e0bf118c381846f2392cab973a2528
Author: Tim Rühsen <tim.ruehsen@gmx.de>
Date: Sat, 17 Jun 2017 12:39:42 +0200
Fix 'make check'
Hi,
path to fix a small bug in test_daemon.c.
Regards, Tim
Signed-off-by: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/microhttpd/test_daemon.c b/src/microhttpd/test_daemon.c
@@ -43,7 +43,7 @@ testStartError ()
d = MHD_start_daemon (MHD_USE_ERROR_LOG, 0, NULL, NULL, NULL, NULL);
if (NULL != d)
{
- MHD_stop_daemon ();
+ MHD_stop_daemon (d);
fprintf (stderr,
"Succeeded to start without MHD_AccessHandlerCallback?\n");
return 1;