aboutsummaryrefslogtreecommitdiffstats
path: root/ui/traffic_table_ui.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2018-03-09 21:19:26 -0800
committerGuy Harris <guy@alum.mit.edu>2018-03-10 05:20:23 +0000
commitb9f203c1da43ba0e11bf8e1c6cc4c74e60f49402 (patch)
tree8a2218d1f376a34b33960ddfc798571446310a29 /ui/traffic_table_ui.h
parentb8375119e39bebed34344cf1a6953af1532d2b62 (diff)
Don't put a comma after the last item in an enum list.
C prior to C99 and C++ prior to C++11 don't allow a comma there; we require C99, at least on UN*X, but don't require C++11. Change-Id: Ia652de44315d4d87e75f583317b7b1069c8804e7 Reviewed-on: https://code.wireshark.org/review/26411 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'ui/traffic_table_ui.h')
-rw-r--r--ui/traffic_table_ui.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/traffic_table_ui.h b/ui/traffic_table_ui.h
index f067297808..87c1e9d148 100644
--- a/ui/traffic_table_ui.h
+++ b/ui/traffic_table_ui.h
@@ -58,7 +58,7 @@ typedef enum
ENDP_COLUMN_GEO_CITY,
ENDP_COLUMN_GEO_AS_NUM,
ENDP_COLUMN_GEO_AS_ORG,
- ENDP_NUM_GEO_COLUMNS,
+ ENDP_NUM_GEO_COLUMNS
} endpoint_column_type_e;
extern const char *endp_column_titles[ENDP_NUM_GEO_COLUMNS];