summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
Diffstat (limited to 'common')
-rw-r--r--common/loop.c2
-rw-r--r--common/pango.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/common/loop.c b/common/loop.c
index 750bee75..82b80017 100644
--- a/common/loop.c
+++ b/common/loop.c
@@ -1,4 +1,4 @@
1#define _POSIX_C_SOURCE 199309L 1#define _POSIX_C_SOURCE 200112L
2#include <limits.h> 2#include <limits.h>
3#include <string.h> 3#include <string.h>
4#include <stdbool.h> 4#include <stdbool.h>
diff --git a/common/pango.c b/common/pango.c
index f0b8db66..3bc97808 100644
--- a/common/pango.c
+++ b/common/pango.c
@@ -10,7 +10,7 @@
10#include "log.h" 10#include "log.h"
11#include "stringop.h" 11#include "stringop.h"
12 12
13static const char *overflow = "[buffer overflow]"; 13static const char overflow[] = "[buffer overflow]";
14static const int max_chars = 16384; 14static const int max_chars = 16384;
15 15
16size_t escape_markup_text(const char *src, char *dest) { 16size_t escape_markup_text(const char *src, char *dest) {