[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[libmicrohttpd] 02/02: MHD_create_response_empty(): fixed typo
From: |
gnunet |
Subject: |
[libmicrohttpd] 02/02: MHD_create_response_empty(): fixed typo |
Date: |
Sat, 14 May 2022 15:52:08 +0200 |
This is an automated email from the git hooks/post-receive script.
karlson2k pushed a commit to branch master
in repository libmicrohttpd.
commit 1ddb4764a7504bda45c1184ca4a2b006f845a6dd
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
AuthorDate: Sat May 14 16:47:31 2022 +0300
MHD_create_response_empty(): fixed typo
---
src/microhttpd/response.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/microhttpd/response.c b/src/microhttpd/response.c
index 4c6c192a..35e0aaeb 100644
--- a/src/microhttpd/response.c
+++ b/src/microhttpd/response.c
@@ -1702,7 +1702,7 @@ MHD_create_response_empty (enum MHD_ResponseFlags flags)
r = (struct MHD_Response *) MHD_calloc_ (1, sizeof (struct MHD_Response));
if (NULL != r)
{
- if (! MHD_mutex_init_ (&r->mutex))
+ if (MHD_mutex_init_ (&r->mutex))
{
r->fd = -1;
r->reference_count = 1;
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.