[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[libmicrohttpd] 87/156: autoinit_funcs.h: fixed harmless typos
From: |
gnunet |
Subject: |
[libmicrohttpd] 87/156: autoinit_funcs.h: fixed harmless typos |
Date: |
Sun, 28 May 2023 17:52:20 +0200 |
This is an automated email from the git hooks/post-receive script.
karlson2k pushed a commit to tag v0.9.77
in repository libmicrohttpd.
commit b57fac682cbee184a1273e8e461db34573c7a75e
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
AuthorDate: Tue Apr 25 20:29:51 2023 +0300
autoinit_funcs.h: fixed harmless typos
---
src/include/autoinit_funcs.h | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/src/include/autoinit_funcs.h b/src/include/autoinit_funcs.h
index 1636db7f..781f851c 100644
--- a/src/include/autoinit_funcs.h
+++ b/src/include/autoinit_funcs.h
@@ -67,7 +67,7 @@
* Current version of the header in packed BCD form.
* 0x01093001 = 1.9.30-1.
*/
-#define AUTOINIT_FUNCS_VERSION 0x01000500
+#define AUTOINIT_FUNCS_VERSION 0x01000600
#if defined(__GNUC__) || defined(__clang__)
/* if possible - check for supported attribute */
@@ -78,7 +78,7 @@
#endif /* __has_attribute */
#endif /* __GNUC__ */
-/* "_attribute__ ((constructor))" is supported by GCC, clang and
+/* "__has_attribute__ ((constructor))" is supported by GCC, clang and
Sun/Oracle compiler starting from version 12.1. */
#if ((defined(__GNUC__) || defined(__clang__)) && \
! defined(_GNUC_ATTR_CONSTR_NOT_SUPPORTED)) || \
@@ -106,7 +106,7 @@
/* Define AUTOINIT_FUNCS_DECLARE_STATIC_REG if you need macro declaration
for registering static initialization functions even if you building DLL */
/* Define AUTOINIT_FUNCS_FORCE_STATIC_REG if you want to set main macro
- _SET_INIT_AND_DEINIT_FUNCS to static version even if building a DLL*/
+ _SET_INIT_AND_DEINIT_FUNCS to static version even if building a DLL */
/* Stringify macros */
#define _INSTRMACRO(a) #a
@@ -128,11 +128,11 @@
#if defined(_M_X64) || defined(_M_AMD64)
#define W32_VARDECORPREFIX
#define W32_DECORVARNAME(v) v
-#define W32_VARDECORPEFIXSTR ""
+#define W32_VARDECORPREFIXSTR ""
#elif defined(_M_IX86) || defined(_X86_)
#define W32_VARDECORPREFIX _
#define W32_DECORVARNAME(v) _ ## v
-#define W32_VARDECORPEFIXSTR "_"
+#define W32_VARDECORPREFIXSTR "_"
#else
#error Do not know how to decorate symbols for this architecture
#endif
@@ -140,7 +140,7 @@
/* Internal variable prefix (can be any) */
#define W32_INITHELPERVARNAME(f) _initHelperDummy_ ## f
#define W32_INITHELPERVARNAMEDECORSTR(f) \
- W32_VARDECORPEFIXSTR _STRMACRO (W32_INITHELPERVARNAME (f))
+ W32_VARDECORPREFIXSTR _STRMACRO (W32_INITHELPERVARNAME (f))
/* Declare section (segment), put variable pointing to init function to chosen
segment,
force linker to include variable to avoid omitting by optimizer */
@@ -248,7 +248,7 @@
abort compilation if automatic initializers/deinitializers are not
supported */
#ifdef EMIT_ERROR_IF_AUTOINIT_FUNCS_ARE_NOT_SUPPORTED
#error \
- Compiler/platform don not support automatic calls of user-defined
initializer and deinitializer
+ Compiler/platform does not support automatic calls of user-defined
initializer and deinitializer
#endif /* EMIT_ERROR_IF_AUTOINIT_FUNCS_ARE_NOT_SUPPORTED */
/* Do nothing */
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.
- [libmicrohttpd] 103/156: configure: renamed macro, (continued)
- [libmicrohttpd] 103/156: configure: renamed macro, gnunet, 2023/05/28
- [libmicrohttpd] 112/156: Added specific headers detection and include, gnunet, 2023/05/28
- [libmicrohttpd] 69/156: microhttpd.h: fixed typo in doxy, gnunet, 2023/05/28
- [libmicrohttpd] 66/156: configure: improved compatibility with POSIX, gnunet, 2023/05/28
- [libmicrohttpd] 67/156: configure: cosmetics: deleted extra spaces, gnunet, 2023/05/28
- [libmicrohttpd] 71/156: Fixed initialisation of old GnuTLS versions, gnunet, 2023/05/28
- [libmicrohttpd] 77/156: Added test with large folded header, gnunet, 2023/05/28
- [libmicrohttpd] 75/156: Added new tests with header fold, gnunet, 2023/05/28
- [libmicrohttpd] 83/156: autoinit_funcs.h: added functions prototypes, gnunet, 2023/05/28
- [libmicrohttpd] 80/156: Added autoconf patches and fixes, gnunet, 2023/05/28
- [libmicrohttpd] 87/156: autoinit_funcs.h: fixed harmless typos,
gnunet <=
- [libmicrohttpd] 89/156: autoinit_funcs.h: updated to use (semi-)official documented sections, gnunet, 2023/05/28
- [libmicrohttpd] 88/156: autoinit_funcs.h: added support for non-x86 arches for MSVC, gnunet, 2023/05/28
- [libmicrohttpd] 86/156: Muted compiler warnings for W32 non-TLS build of the lib, gnunet, 2023/05/28
- [libmicrohttpd] 93/156: Added more mutes for autoconf compiler warnings, gnunet, 2023/05/28
- [libmicrohttpd] 92/156: bootstrap script: improved portability, gnunet, 2023/05/28
- [libmicrohttpd] 95/156: test_post_form: updated to support the new libcurl API, gnunet, 2023/05/28
- [libmicrohttpd] 104/156: test_quiesce: fixed possible uninitialised var, gnunet, 2023/05/28
- [libmicrohttpd] 101/156: configure: bumped gettext version requirement, gnunet, 2023/05/28
- [libmicrohttpd] 100/156: test_toolarge: fixed reported error description, gnunet, 2023/05/28
- [libmicrohttpd] 108/156: test_client_put_stop: fixed typo in comment, gnunet, 2023/05/28