commit bbf587cd08c3820290e5fdb3cff180b515eb1697 parent c90efdbe41e75249547e01ef3ceb80d8d394f52c Author: Evgeny Grin (Karlson2k) <k2k@drgrin.dev> Date: Tue, 9 Dec 2025 20:44:09 +0100 tls_gnu_conn_data.h: changed type of debug flags Diffstat:
| M | src/mhd2/tls_gnu_conn_data.h | | | 8 | ++++---- |
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/mhd2/tls_gnu_conn_data.h b/src/mhd2/tls_gnu_conn_data.h @@ -58,10 +58,10 @@ #ifndef NDEBUG struct mhd_TlsGnuConnDebug { - unsigned int is_inited; - unsigned int is_tls_handshake_completed; - unsigned int is_finished; - unsigned int is_failed; + bool is_inited; + bool is_tls_handshake_completed; + bool is_finished; + bool is_failed; }; #endif /* ! NDEBUG */