[Nautilus-list] PATCH: v-b-s build broken



Permission to commit this simple fix?

-- 
Murray Cumming
murrayc usa net
www.murrayc.com
? nautilus_warning.patch
Index: ChangeLog
===================================================================
RCS file: /cvs/gnome/nautilus/ChangeLog,v
retrieving revision 1.5240
diff -u -p -r1.5240 ChangeLog
--- ChangeLog	24 Apr 2002 01:32:42 -0000	1.5240
+++ ChangeLog	24 Apr 2002 13:09:22 -0000
@@ -1,5 +1,11 @@
 2002-04-24  Murray Cumming  <murrayc usa net>
 
+	* src/file-manager/fm-list-model.c
+	(fm_list_model_get_attribute_from_sort_column_id):
+	Corrected signed to unsigned warning with int used in for loop.
+
+2002-04-24  Murray Cumming  <murrayc usa net>
+
 	* Added the necessary bonobo_object_ref() to my previous commit,
 	to prevent crashing during the unref when the window closes.
 
Index: src/file-manager/fm-list-model.c
===================================================================
RCS file: /cvs/gnome/nautilus/src/file-manager/fm-list-model.c,v
retrieving revision 1.12
diff -u -p -r1.12 fm-list-model.c
--- src/file-manager/fm-list-model.c	24 Apr 2002 00:16:50 -0000	1.12
+++ src/file-manager/fm-list-model.c	24 Apr 2002 13:09:23 -0000
@@ -719,7 +719,7 @@ fm_list_model_get_sort_column_id_from_at
 char *
 fm_list_model_get_attribute_from_sort_column_id (int sort_column_id)
 {
-	int i;
+	guint i;
 
 	for (i = 0; i < G_N_ELEMENTS (attributes); i++) {
 		if (attributes[i].sort_column_id == sort_column_id) {


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]