changeset 1609:0e6d7afe0739

Fix up too short array, reported by Michael Schwendt.
author zas_
date Sat, 16 May 2009 11:31:48 +0000
parents 270d7a779620
children 99c194fa2fc9
files src/logwindow.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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);