diff src/accountopt.c @ 5663:e9551e7d6f01

[gaim-migrate @ 6077] I messed up on those checks. Now the warnings are gone, and the correct values are being returned, except for Jabber, but I'll figure that out in a second or two. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Mon, 02 Jun 2003 10:03:03 +0000
parents 1709a545a7bd
children e30bedfb99db
line wrap: on
line diff
--- a/src/accountopt.c	Mon Jun 02 09:59:35 2003 +0000
+++ b/src/accountopt.c	Mon Jun 02 10:03:03 2003 +0000
@@ -173,7 +173,7 @@
 gaim_account_option_get_default_bool(const GaimAccountOption *option)
 {
 	g_return_val_if_fail(option != NULL, FALSE);
-	g_return_val_if_fail(option->type != GAIM_PREF_BOOLEAN, FALSE);
+	g_return_val_if_fail(option->type == GAIM_PREF_BOOLEAN, FALSE);
 
 	return option->default_value.boolean;
 }
@@ -182,7 +182,7 @@
 gaim_account_option_get_default_int(const GaimAccountOption *option)
 {
 	g_return_val_if_fail(option != NULL, -1);
-	g_return_val_if_fail(option->type != GAIM_PREF_INT, -1);
+	g_return_val_if_fail(option->type == GAIM_PREF_INT, -1);
 
 	return option->default_value.integer;
 }
@@ -191,7 +191,7 @@
 gaim_account_option_get_default_string(const GaimAccountOption *option)
 {
 	g_return_val_if_fail(option != NULL, NULL);
-	g_return_val_if_fail(option->type != GAIM_PREF_STRING, NULL);
+	g_return_val_if_fail(option->type == GAIM_PREF_STRING, NULL);
 
 	return option->default_value.string;
 }