[gnumeric] compilation: don't mix int and gboolean.



commit 7d1aa144b508c16089758f831e0535987c884460
Author: Morten Welinder <terra gnome org>
Date:   Thu Nov 25 15:02:11 2010 -0500

    compilation: don't mix int and gboolean.

 plugins/sc/sc.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/plugins/sc/sc.c b/plugins/sc/sc.c
index 9474711..1a6a8df 100644
--- a/plugins/sc/sc.c
+++ b/plugins/sc/sc.c
@@ -168,7 +168,7 @@ sc_colname_to_coords (char const *colname, gint *m)
 	int mult;
 	int digits = 1;
 
-	g_return_val_if_fail (colname, FALSE);
+	g_return_val_if_fail (colname, 0);
 
 	if (!colname || !*colname || !g_ascii_isalpha (*colname))
 		return 0;



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