Whitespace cleanup.

svn path=/trunk/; revision=38893
This commit is contained in:
Stig Bjørlykke 2011-09-06 09:09:36 +00:00
parent d6daef25bb
commit ad6be9beb8
2 changed files with 12 additions and 12 deletions

View File

@ -160,7 +160,7 @@ epan_circuit_cleanup(void)
}
epan_dissect_t*
epan_dissect_init(epan_dissect_t *edt, const gboolean create_proto_tree, const gboolean proto_tree_visible)
epan_dissect_init(epan_dissect_t *edt, const gboolean create_proto_tree, const gboolean proto_tree_visible)
{
g_assert(edt);
@ -178,7 +178,7 @@ epan_dissect_init(epan_dissect_t *edt, const gboolean create_proto_tree, const g
epan_dissect_t*
epan_dissect_new(const gboolean create_proto_tree, const gboolean proto_tree_visible)
{
epan_dissect_t *edt;
epan_dissect_t *edt;
edt = g_new0(epan_dissect_t, 1);

View File

@ -747,7 +747,7 @@ dissector_add_uint(const char *name, const guint32 pattern, dissector_handle_t h
dtbl_entry->current = handle;
dtbl_entry->initial = dtbl_entry->current;
/* do the table insertion */
/* do the table insertion */
g_hash_table_insert( sub_dissectors->hash_table,
GUINT_TO_POINTER( pattern), (gpointer)dtbl_entry);
@ -773,7 +773,7 @@ dissector_delete_uint(const char *name, const guint32 pattern,
dissector_table_t sub_dissectors = find_dissector_table( name);
dtbl_entry_t *dtbl_entry;
/* sanity check */
/* sanity check */
g_assert( sub_dissectors);
/*
@ -803,7 +803,7 @@ dissector_change_uint(const char *name, const guint32 pattern, dissector_handle_
dissector_table_t sub_dissectors = find_dissector_table( name);
dtbl_entry_t *dtbl_entry;
/* sanity check */
/* sanity check */
g_assert( sub_dissectors);
/*
@ -827,7 +827,7 @@ dissector_change_uint(const char *name, const guint32 pattern, dissector_handle_
dtbl_entry->initial = NULL;
dtbl_entry->current = handle;
/* do the table insertion */
/* do the table insertion */
g_hash_table_insert( sub_dissectors->hash_table,
GUINT_TO_POINTER( pattern), (gpointer)dtbl_entry);
}
@ -839,7 +839,7 @@ dissector_reset_uint(const char *name, const guint32 pattern)
dissector_table_t sub_dissectors = find_dissector_table( name);
dtbl_entry_t *dtbl_entry;
/* sanity check */
/* sanity check */
g_assert( sub_dissectors);
/*
@ -1011,7 +1011,7 @@ dissector_add_string(const char *name, const gchar *pattern,
dtbl_entry->current = handle;
dtbl_entry->initial = dtbl_entry->current;
/* do the table insertion */
/* do the table insertion */
g_hash_table_insert( sub_dissectors->hash_table, (gpointer)pattern,
(gpointer)dtbl_entry);
@ -1038,7 +1038,7 @@ dissector_delete_string(const char *name, const gchar *pattern,
dissector_table_t sub_dissectors = find_dissector_table( name);
dtbl_entry_t *dtbl_entry;
/* sanity check */
/* sanity check */
g_assert( sub_dissectors);
/*
@ -1068,7 +1068,7 @@ dissector_change_string(const char *name, const gchar *pattern,
dissector_table_t sub_dissectors = find_dissector_table( name);
dtbl_entry_t *dtbl_entry;
/* sanity check */
/* sanity check */
g_assert( sub_dissectors);
/*
@ -1092,7 +1092,7 @@ dissector_change_string(const char *name, const gchar *pattern,
dtbl_entry->initial = NULL;
dtbl_entry->current = handle;
/* do the table insertion */
/* do the table insertion */
g_hash_table_insert( sub_dissectors->hash_table, (gpointer)pattern,
(gpointer)dtbl_entry);
}
@ -1104,7 +1104,7 @@ dissector_reset_string(const char *name, const gchar *pattern)
dissector_table_t sub_dissectors = find_dissector_table( name);
dtbl_entry_t *dtbl_entry;
/* sanity check */
/* sanity check */
g_assert( sub_dissectors);
/*