From 772d8237f0cbd29b21ae48ac92b4731db2aa6a15 Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Fri, 6 Aug 2021 04:37:26 +0000 Subject: [PATCH] fixed a mistake in ../bin/t06.c --- hio/bin/t06.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hio/bin/t06.c b/hio/bin/t06.c index 75ff62c..aaed44c 100644 --- a/hio/bin/t06.c +++ b/hio/bin/t06.c @@ -240,7 +240,7 @@ void* thr_func (void* arg) htts_bind_info[1].ssl_keyfile = "localhost.key"; #endif - htts = hio_svc_htts_start(hio, &htts_bind_info, HIO_COUNTOF(htts_bind_info), process_http_request); + htts = hio_svc_htts_start(hio, htts_bind_info, HIO_COUNTOF(htts_bind_info), process_http_request); if (!htts) { printf ("Unable to start htts\n");