aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorhwspeedy <ns@bigbear.dk>2024-03-11 23:26:34 +0100
committerhwspeedy <ns@bigbear.dk>2024-03-11 23:26:34 +0100
commitaa3ac5ba573fa1dac8dec7b844d130355e49821c (patch)
tree618a217e460d22a9a4657b9cc824b07ce8c86158 /shell
parentde70603e7a490a20d6eeee923c7764e426880a86 (diff)
FIX GCC warnings - include & uninit free (Potential Crash - never seen)
Diffstat (limited to 'shell')
-rw-r--r--shell/callbacks.c2
-rw-r--r--shell/syncmanager.c3
2 files changed, 5 insertions, 0 deletions
diff --git a/shell/callbacks.c b/shell/callbacks.c
index c60487d9..89fe4e32 100644
--- a/shell/callbacks.c
+++ b/shell/callbacks.c
@@ -18,6 +18,8 @@
#include <stdlib.h>
#include <gtk/gtk.h>
+#include <glib.h>
+#include <glib/gstdio.h>
#include "hardinfo.h"
#include "callbacks.h"
diff --git a/shell/syncmanager.c b/shell/syncmanager.c
index 4608eb7d..ad2c119a 100644
--- a/shell/syncmanager.c
+++ b/shell/syncmanager.c
@@ -23,6 +23,9 @@
#include <libsoup/soup.h>
+#include <glib.h>
+#include <glib/gstdio.h>
+
#include <stdarg.h>
#include <string.h>
#include <fcntl.h>