mirror of
https://github.com/irssi/irssi.git
synced 2025-04-26 04:51:11 -05:00
build: fix linking error on arm64 Darwin
Currently, it is not possible to build git master on Darwin, as seen in several issues reported previously. This commit fixes that issues, by initializing two variables to NULL. I have no idea, why this solves the linking error, as to my knowledge, global variables do not need to be initialized.
This commit is contained in:
parent
f9c9485d15
commit
47b7f5164a
@ -34,8 +34,8 @@
|
|||||||
#include "default-theme.h"
|
#include "default-theme.h"
|
||||||
|
|
||||||
GSList *themes;
|
GSList *themes;
|
||||||
THEME_REC *current_theme;
|
THEME_REC *current_theme = NULL;
|
||||||
GHashTable *default_formats;
|
GHashTable *default_formats = NULL;
|
||||||
|
|
||||||
static int init_finished;
|
static int init_finished;
|
||||||
static char *init_errors;
|
static char *init_errors;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user