libmicrohttpd

HTTP/1.x server C library (MHD 1.x, stable)
Log | Files | Refs | Submodules | README | LICENSE

commit 763db7922a1a0dac570f3090ddc0fdb84b6560e7
parent 8c87442ffc677fd41c31c9a3fde0d685ef5ae65d
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date:   Sat, 23 Apr 2022 15:20:46 +0300

microhttpd2.h: fixed code style

Diffstat:
Msrc/include/microhttpd2.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/include/microhttpd2.h b/src/include/microhttpd2.h @@ -260,7 +260,7 @@ typedef SOCKET MHD_socket; /* GCC >= 5.0 or clang >= 2.9 */ #define _MHD_DEPR_FUNC(msg) __attribute__((deprecated (msg))) #elif defined(__clang__) || __GNUC__ + 0 > 3 || (__GNUC__ + 0 == 3 && \ - __GNUC_MINOR__ + 0 >= 1) + __GNUC_MINOR__ + 0 >= 1) /* 3.1 <= GCC < 5.0 or clang < 2.9 */ /* old GCC-style deprecation do not support custom messages */ #define _MHD_DEPR_FUNC(msg) __attribute__((__deprecated__))