aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2023-01-11 17:13:29 +0100
committerChristian Grothoff <christian@grothoff.org>2023-01-11 17:13:29 +0100
commit10c32ba4e18cb8a2d0a7410c18cf6756d1951036 (patch)
tree82f8355c830e876984894e5e37f28063b5e53713 /src/include
parentee2af6e0d5b740a68254de6c2fa718ca245e00aa (diff)
downloadgnunet-10c32ba4e18cb8a2d0a7410c18cf6756d1951036.tar.gz
gnunet-10c32ba4e18cb8a2d0a7410c18cf6756d1951036.zip
-fix syntax error
Diffstat (limited to 'src/include')
-rw-r--r--src/include/gnunet_mysql_compat.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/gnunet_mysql_compat.h b/src/include/gnunet_mysql_compat.h
index bb1e8de8a..2025d481e 100644
--- a/src/include/gnunet_mysql_compat.h
+++ b/src/include/gnunet_mysql_compat.h
@@ -43,12 +43,12 @@ extern "C"
43 43
44#ifndef LIBMARIADB 44#ifndef LIBMARIADB
45#if MYSQL_VERSION_ID < 80000 45#if MYSQL_VERSION_ID < 80000
46#define MYSQL_BOOL bool; 46#define MYSQL_BOOL bool
47#else 47#else
48#define MYSQL_BOOL my_bool; //MySQL < 8 wants this 48#define MYSQL_BOOL my_bool // MySQL < 8 wants this
49#endif 49#endif
50#else 50#else
51#define MYSQL_BOOL my_bool //MariaDB still uses my_bool 51#define MYSQL_BOOL my_bool // MariaDB still uses my_bool
52#endif 52#endif
53 53
54#if 0 /* keep Emacsens' auto-indent happy */ 54#if 0 /* keep Emacsens' auto-indent happy */