summaryrefslogtreecommitdiff
path: root/plugins/MirOTR/src
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/MirOTR/src')
-rw-r--r--plugins/MirOTR/src/entities.cpp4
-rw-r--r--plugins/MirOTR/src/stdafx.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/plugins/MirOTR/src/entities.cpp b/plugins/MirOTR/src/entities.cpp
index 916bebd608..f049ad0b88 100644
--- a/plugins/MirOTR/src/entities.cpp
+++ b/plugins/MirOTR/src/entities.cpp
@@ -317,7 +317,7 @@ static size_t putc_utf8(unsigned long cp, char *buffer)
return 0;
}
-static _Bool parse_entity(const char *current, char **to,
+static bool parse_entity(const char *current, char **to,
const char **from, size_t maxlen)
{
const char *end = (const char *)memchr(current, ';', maxlen);
@@ -328,7 +328,7 @@ static _Bool parse_entity(const char *current, char **to,
char *tail = NULL;
errno = 0;
- _Bool hex = current[2] == 'x' || current[2] == 'X';
+ bool hex = current[2] == 'x' || current[2] == 'X';
unsigned long cp = strtoul(
current + (hex ? 3 : 2), &tail, hex ? 16 : 10);
diff --git a/plugins/MirOTR/src/stdafx.h b/plugins/MirOTR/src/stdafx.h
index b675f3314c..4d1be59d91 100644
--- a/plugins/MirOTR/src/stdafx.h
+++ b/plugins/MirOTR/src/stdafx.h
@@ -7,7 +7,7 @@
#define _CRT_NON_CONFORMING_SWPRINTFS
#define _CRT_SECURE_NO_WARNINGS
-#define WIN32_LEAN_AND_MEAN // Selten verwendete Teile der Windows-Header nicht einbinden.
+#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <commctrl.h>