summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Laager <rlaager@pidgin.im>2008-05-06 05:13:26 +0000
committerRichard Laager <rlaager@pidgin.im>2008-05-06 05:13:26 +0000
commit081845950f75380464d158bbfca5916d11d5ccc9 (patch)
tree63fb282a8295da36de016f14e116d41d70e5c556
parent86fc5aed26383b2b3d60e34e5207c77b63b7b92d (diff)
downloadpidgin-081845950f75380464d158bbfca5916d11d5ccc9.tar.gz
Fix a compiler warning due to a missing #ifdef USE_PYTHON
-rw-r--r--finch/libgnt/gntwm.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/finch/libgnt/gntwm.c b/finch/libgnt/gntwm.c
index e4aa5362cc..a4ba43bcd3 100644
--- a/finch/libgnt/gntwm.c
+++ b/finch/libgnt/gntwm.c
@@ -101,7 +101,9 @@ static time_t last_active_time;
static gboolean idle_update;
static GList *act = NULL; /* list of WS with unseen activitiy */
static gboolean ignore_keys = FALSE;
+#ifdef USE_PYTHON
static gboolean started_python = FALSE;
+#endif
static GList *
g_list_bring_to_front(GList *list, gpointer data)