commit 0103a12b823cb381185161678291293383a39d5b
parent 664b8c8f77d12ac2691bbfbbb57bb76e4e21de51
Author: Evgeny Grin (Karlson2k) <k2k@drgrin.dev>
Date: Sat, 4 Jul 2026 11:53:52 +0200
Fixed bad include-guard introduced by e154ae81202e274d51d869d4d4834c96dd6668d4
It was a simple copy-paste error, breaking all files that may include
both headers.
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/mhd2/mhd_rng.h b/src/mhd2/mhd_rng.h
@@ -42,8 +42,8 @@
* @author Christian Grothoff
*/
-#ifndef MHD_RECV_H
-#define MHD_RECV_H 1
+#ifndef MHD_RNG_H
+#define MHD_RNG_H 1
#include "mhd_sys_options.h"
@@ -64,4 +64,4 @@ mhd_rng (size_t buf_size,
uint8_t buf[MHD_FN_PAR_DYN_ARR_SIZE_ (buf_size)])
MHD_FN_PAR_OUT_SIZE_ (2,1);
-#endif
+#endif /* ! MHD_RNG_H */