aboutsummaryrefslogtreecommitdiffstats
path: root/conditions.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2010-03-01 23:43:47 +0000
committerGuy Harris <guy@alum.mit.edu>2010-03-01 23:43:47 +0000
commitcde1496de29616033c942325607f86b406c3829f (patch)
treee0b37d5f14649ab645400b9932551467b932d72a /conditions.c
parente442f4e192a3ccb8d38b13d0fc54dcf4efef6461 (diff)
Squelch some compiler warnings.
svn path=/trunk/; revision=32074
Diffstat (limited to 'conditions.c')
-rw-r--r--conditions.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/conditions.c b/conditions.c
index 7a1e9ee63a..67c408b423 100644
--- a/conditions.c
+++ b/conditions.c
@@ -206,7 +206,7 @@ void _cnd_find_hash_key_for_class_id(gpointer key,
gpointer user_data){
char* class_id = (char*)user_data;
char* key_value = (char*)key;
- if(strcmp(class_id, key_value) == 0) pkey = key;
+ if(strcmp(class_id, key_value) == 0) pkey = key_value;
} /* END _cnd_find_hash_key_for_class_id() */
/*