aboutsummaryrefslogtreecommitdiffstats
path: root/conditions.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2010-03-02 00:06:20 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2010-03-02 00:06:20 +0000
commitd4caaf816a35c8c86529032ef43ccd10633cfe7d (patch)
treea75c8dc7053d87c86d381126aceea03ef3aad46c /conditions.c
parentc7a31ce384e12d55f0decbcdaefe6ba3776c0d4c (diff)
Squelch some compiler warnings, clean up indentation, clean up a
comment. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32076 f5534014-38df-0310-8fa8-9805f1628bb7
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() */
/*