diff src/logwindow.c @ 736:a7289f9e8d29

Fix signed vs unsigned warnings. In most cases, gint was used instead of guint.
author zas_
date Thu, 22 May 2008 13:00:45 +0000
parents 7119e30971ec
children e73d30e0c896
line wrap: on
line diff
--- a/src/logwindow.c	Thu May 22 11:28:35 2008 +0000
+++ b/src/logwindow.c	Thu May 22 13:00:45 2008 +0000
@@ -28,7 +28,7 @@
 	
 	GdkColor colors[LOG_COUNT];
 
-	gint lines;
+	guint lines;
 };
 
 typedef struct _LogDef LogDef;
@@ -208,7 +208,7 @@
 	GtkTextView *text;
 	GtkTextBuffer *buffer;
 	GtkTextIter iter;
-	gint line_limit = 1000; //FIXME: option
+	guint line_limit = 1000; //FIXME: option
 	static GList *memory = NULL;
 
 	if (logwindow == NULL)