summaryrefslogtreecommitdiff
path: root/src/ui/ui.c
diff options
context:
space:
mode:
authorVictor Kareh <[email protected]>2026-08-11 15:37:40 -0400
committerVictor Kareh <[email protected]>2026-08-11 15:37:40 -0400
commit27f804c68a2706817093d572e31784facba93e02 (patch)
tree36a86202c5984492a1beca26e414d8cfd263b6cd /src/ui/ui.c
parentaf548cae476194a47f33e3d5fb8e6a8f8deacf33 (diff)
downloadmarco-fix-config-h-include-order.tar.bz2
marco-fix-config-h-include-order.tar.xz
Always include config.h before util.hfix-config-h-include-order
The util.h file guards verbose output through WITH_VERBOSE_MODE, which is defined in config.h. This means that verbose mode would have never worked on some of these files unless config.h was included first. All other files with verbose output calls already include config.h.
Diffstat (limited to 'src/ui/ui.c')
-rw-r--r--src/ui/ui.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ui/ui.c b/src/ui/ui.c
index 00500c03..7abfa45b 100644
--- a/src/ui/ui.c
+++ b/src/ui/ui.c
@@ -20,6 +20,7 @@
* 02110-1301, USA.
*/
+#include <config.h>
#include "prefs.h"
#include "ui.h"
#include "frames.h"