diff options
author | Wouter Van Rooy <wouter.vanrooy@gmail.com> | 2013-09-02 22:07:35 +0200 |
---|---|---|
committer | Wouter Van Rooy <wouter.vanrooy@gmail.com> | 2013-09-02 22:07:35 +0200 |
commit | dc5db198cc3f2b5cb867f1be06726a477b13b341 (patch) | |
tree | a4a2eccd487391f9f3bc7844be9215a7b8bbaa9b /svte.c | |
parent | 520061e312d18fae76e3e42209aa1274867c211a (diff) |
Fix error Only <glib.h> can be included directly.
New version of Glib no longer allows to include headers from its subdirectories.
Diffstat (limited to 'svte.c')
-rw-r--r-- | svte.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -19,7 +19,7 @@ #include "defaults.h" #include <gdk/gdkkeysyms.h> -#include <glib/goption.h> +#include <glib.h> #include <gtk/gtk.h> #include <vte/vte.h> #include <unistd.h> |