From 09062c1f9a572345da978d451450ec51d8273bd9 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 6 Aug 2017 16:05:49 +0200 Subject: Fix preprocessor if with potentially undefined symbol --- src/host.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/host.c b/src/host.c index 6502543..b585c9d 100644 --- a/src/host.c +++ b/src/host.c @@ -82,7 +82,7 @@ suil_init(int* argc, char*** argv, SuilArg key, ...) suil_argc = argc ? *argc : 0; suil_argv = argv ? *argv : NULL; -#if SUIL_WITH_X11 +#ifdef SUIL_WITH_X11 suil_load_init_module("suil_x11"); #endif } -- cgit v1.2.1