diff mcabber/mcabber/screen.c @ 2333:69d292ccf196

Fix multiple declarations issue with COLOR_ATTRIB This fails compilation with GCC 10 or -fno-common in CFLAGS. Link: https://bugs.gentoo.org/707418
author Andrey Utkin <andrey_utkin@gentoo.org>
date Mon, 17 Feb 2020 23:40:49 +0000
parents 1e24d93746d6
children 6ad3cada768c
line wrap: on
line diff
--- a/mcabber/mcabber/screen.c	Mon Nov 25 21:40:51 2019 +0100
+++ b/mcabber/mcabber/screen.c	Mon Feb 17 23:40:49 2020 +0000
@@ -59,6 +59,8 @@
 #include "xmpp.h"
 #include "main.h"
 
+int COLOR_ATTRIB[COLOR_max];
+
 #define get_color(col)      (COLOR_PAIR(col)|COLOR_ATTRIB[col])
 #define compose_color(col)  (COLOR_PAIR(col->color_pair)|col->color_attrib)