aboutsummaryrefslogtreecommitdiffstats
path: root/epan/stats_tree_priv.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2013-11-29 23:46:48 +0000
committerGuy Harris <guy@alum.mit.edu>2013-11-29 23:46:48 +0000
commit1ca96130b317ab4e124f2a4e5f4a7932eb588d2f (patch)
tree0ab5cd9af2d542a2089cc9c1942e292ce44cbad5 /epan/stats_tree_priv.h
parent68c8c7ef0a34c02619bbbd7cab11e20dee122541 (diff)
A typedef has to actually define a type.
svn path=/trunk/; revision=53659
Diffstat (limited to 'epan/stats_tree_priv.h')
-rw-r--r--epan/stats_tree_priv.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/stats_tree_priv.h b/epan/stats_tree_priv.h
index a6790e495d..98d3a4694d 100644
--- a/epan/stats_tree_priv.h
+++ b/epan/stats_tree_priv.h
@@ -283,7 +283,7 @@ WS_DLL_PUBLIC gint stat_node_array_sortcmp (gconstpointer a,
gpointer user_data);
/** function to copy stats_tree into GString. format deternmines output format */
-typedef enum _st_format_type { ST_FORMAT_PLAIN, ST_FORMAT_CSV, ST_FORMAT_XML};
+typedef enum { ST_FORMAT_PLAIN, ST_FORMAT_CSV, ST_FORMAT_XML} st_format_type;
WS_DLL_PUBLIC GString* stats_tree_format_as_str(const stats_tree* st,
guint format,
gint sort_column,