libmicrohttpd

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

commit 0920a1f90865073a20d6e9822fca18ffe5f46d2e
parent b6f083d884729d095b6e9a8c11e5cee93267746b
Author: Christian Grothoff <christian@grothoff.org>
Date:   Wed,  1 Sep 2021 18:23:40 +0200

-fix typo

Diffstat:
Mconfigure.ac | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/configure.ac b/configure.ac @@ -319,7 +319,7 @@ AC_CACHE_CHECK([[for C11 'alignof()' support]], [[mhd_cv_c_alignof]], #if (defined (__GNUC__) && __GNUC__ < 4 && __GNUC_MINOR__ < 9 && ! defined(__clang__)) || \ (defined (__clang__) && __clang_major__ < 8) /* GCC before 4.9 and clang before 8.0 have incorrect implementation of 'alignof()' - which returns preferred alignment instead of minimal required alignment */ + which returns preferred alignment instead of minimal required alignment */ #error Compiler has incorrect implementation of alignof() choke me now #endif @@ -327,7 +327,7 @@ choke me now int var2[alignof(unsigned int) - 1]; int var3[(alignof(char) > 0) ? 1 : -1]; int var4[(alignof(long) >= 4) ? 1 : -1]; - + /* Mute compiler warnings */ var1[0] = var2[0] = var3[0] = 0; var4[0] = 1; @@ -344,7 +344,7 @@ choke me now ]], [[ /* Should fail if 'alignof()' works */ int var1[alignof(nonexisting_type) - 1]; - + /* Mute compiler warnings */ var1[0] = 1; if (var1[0] + 1 == 1) @@ -1089,7 +1089,7 @@ AC_CACHE_CHECK([size of tv_sec member of struct timeval], [mhd_cv_size_timeval_t static struct timeval test_var; ]], [ - # The size is used only to exclude additional checks/comparision in code + # The size is used only to exclude additional checks/comparison in code # to avoid compiler warnings. With larger size MHD code will use # additional checks which ensure that value will fit but it may produce # a harmless compiler warning.