Mark a parameter as unused.

Clean up indentation and get rid of trailing white space.

svn path=/trunk/; revision=44562
This commit is contained in:
Guy Harris 2012-08-18 06:53:39 +00:00
parent 549d81fe37
commit ff6a33fdb4
4 changed files with 12 additions and 26 deletions

View File

@ -380,7 +380,7 @@ static void dissect_ansi_map_win_trigger_list(tvbuff_t *tvb, packet_info *pinfo
static GHashTable *TransactionId_table=NULL;
static void
TransactionId_table_cleanup(gpointer key , gpointer value, gpointer user_data _U_){
TransactionId_table_cleanup(gpointer key, gpointer value _U_, gpointer user_data _U_){
gchar *TransactionId_str = (gchar *)key;
@ -5330,8 +5330,3 @@ void proto_register_ansi_map(void) {
register_init_routine(&ansi_map_init_protocol);
}

View File

@ -165,7 +165,7 @@ struct ansi_tcap_invokedata_t {
static GHashTable *TransactionId_table=NULL;
static void
TransactionId_table_cleanup(gpointer key , gpointer value, gpointer user_data _U_){
TransactionId_table_cleanup(gpointer key, gpointer value _U_, gpointer user_data _U_){
gchar *TransactionId_str = (gchar *)key;
@ -530,12 +530,10 @@ proto_register_ansi_tcap(void)
ansi_tcap_module = prefs_register_protocol(proto_ansi_tcap, proto_reg_handoff_ansi_tcap);
prefs_register_enum_preference(ansi_tcap_module, "transaction.matchtype",
"Type of matching invoke/response",
"Type of matching invoke/response, risk of missmatch if loose matching choosen",
&ansi_tcap_response_matching_type, ansi_tcap_response_matching_type_values, FALSE);
prefs_register_enum_preference(ansi_tcap_module, "transaction.matchtype",
"Type of matching invoke/response",
"Type of matching invoke/response, risk of missmatch if loose matching choosen",
&ansi_tcap_response_matching_type, ansi_tcap_response_matching_type_values, FALSE);
register_init_routine(&ansi_tcap_init_protocol);
}

View File

@ -1168,7 +1168,7 @@ static void dissect_ansi_map_win_trigger_list(tvbuff_t *tvb, packet_info *pinfo
static GHashTable *TransactionId_table=NULL;
static void
TransactionId_table_cleanup(gpointer key , gpointer value, gpointer user_data _U_){
TransactionId_table_cleanup(gpointer key, gpointer value _U_, gpointer user_data _U_){
gchar *TransactionId_str = (gchar *)key;
@ -19629,8 +19629,3 @@ void proto_register_ansi_map(void) {
register_init_routine(&ansi_map_init_protocol);
}

View File

@ -256,7 +256,7 @@ struct ansi_tcap_invokedata_t {
static GHashTable *TransactionId_table=NULL;
static void
TransactionId_table_cleanup(gpointer key , gpointer value, gpointer user_data _U_){
TransactionId_table_cleanup(gpointer key, gpointer value _U_, gpointer user_data _U_){
gchar *TransactionId_str = (gchar *)key;
@ -1812,12 +1812,10 @@ proto_register_ansi_tcap(void)
ansi_tcap_module = prefs_register_protocol(proto_ansi_tcap, proto_reg_handoff_ansi_tcap);
prefs_register_enum_preference(ansi_tcap_module, "transaction.matchtype",
"Type of matching invoke/response",
"Type of matching invoke/response, risk of missmatch if loose matching choosen",
&ansi_tcap_response_matching_type, ansi_tcap_response_matching_type_values, FALSE);
prefs_register_enum_preference(ansi_tcap_module, "transaction.matchtype",
"Type of matching invoke/response",
"Type of matching invoke/response, risk of missmatch if loose matching choosen",
&ansi_tcap_response_matching_type, ansi_tcap_response_matching_type_values, FALSE);
register_init_routine(&ansi_tcap_init_protocol);
}