# HG changeset patch
# User zas_
# Date 1242473508 0
# Node ID f2e62c65a69602b3b6f64868c6dce995035c602b
# Parent  4a3fa267fb65d925e2e82fca036d51e4b8192c09
Fix up too short array, reported by Michael Schwendt.

diff -r 4a3fa267fb65 -r f2e62c65a696 src/logwindow.c
--- a/src/logwindow.c	Sat May 16 08:48:21 2009 +0000
+++ b/src/logwindow.c	Sat May 16 11:31:48 2009 +0000
@@ -112,7 +112,7 @@
 {
 	GtkTextBuffer *buffer;
 	GdkColormap *colormap;
-	gboolean success[LOG_COUNT - 1];
+	gboolean success[LOG_COUNT];
 	gint i;
 
 	g_assert(logwin != NULL);