diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-05-04 09:19:09 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-05-04 09:19:09 +0000 |
commit | 5879955477f0f474a0ae282d4ec88ff3100b89c2 (patch) | |
tree | af8354429c62836c6eb4cb533bf15fb56beee77f /conditions.c | |
parent | 6da70104faebc55830452ed041b522eeec7692bd (diff) | |
download | wireshark-5879955477f0f474a0ae282d4ec88ff3100b89c2.tar.gz wireshark-5879955477f0f474a0ae282d4ec88ff3100b89c2.tar.bz2 wireshark-5879955477f0f474a0ae282d4ec88ff3100b89c2.zip |
From Joerg Mayer: mark an unused argument as such.
svn path=/trunk/; revision=5382
Diffstat (limited to 'conditions.c')
-rw-r--r-- | conditions.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/conditions.c b/conditions.c index 985a452dbe..6971462f42 100644 --- a/conditions.c +++ b/conditions.c @@ -1,7 +1,7 @@ /* conditions.c * Implementation for condition handler. * - * $Id: conditions.c,v 1.1 2001/12/04 07:32:00 guy Exp $ + * $Id: conditions.c,v 1.2 2002/05/04 09:19:09 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -197,7 +197,7 @@ static void _cnd_init(){ * to the key is stored in a global variable. */ void _cnd_find_hash_key_for_class_id(gpointer key, - gpointer value, + gpointer value _U_, gpointer user_data){ char* class_id = (char*)user_data; char* key_value = (char*)key; |