summaryrefslogtreecommitdiff
path: root/epan/to_str.c
diff options
context:
space:
mode:
authorChris Maynard <Christopher.Maynard@GTECH.COM>2013-06-04 19:12:32 +0000
committerChris Maynard <Christopher.Maynard@GTECH.COM>2013-06-04 19:12:32 +0000
commit8df372bb6aaabaa3e781d183215be19a62e247f9 (patch)
treef74de01e162061c8b15898ed15fab96770844afd /epan/to_str.c
parentefb83216f305e4e35b37850f6beb83420abeca7e (diff)
downloadwireshark-8df372bb6aaabaa3e781d183215be19a62e247f9.tar.gz
Fix warning reported by MSVC:
to_str.c(262) : warning C4114: same type qualifier used more than once svn path=/trunk/; revision=49770
Diffstat (limited to 'epan/to_str.c')
-rw-r--r--epan/to_str.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/to_str.c b/epan/to_str.c
index 0f70507f5a..1c418d3385 100644
--- a/epan/to_str.c
+++ b/epan/to_str.c
@@ -259,7 +259,7 @@ guint32_to_str_buf_len(const guint32 u) {
return 1;
}
-static const char const fast_strings[][4] = {
+static const char fast_strings[][4] = {
"0", "1", "2", "3", "4", "5", "6", "7",
"8", "9", "10", "11", "12", "13", "14", "15",
"16", "17", "18", "19", "20", "21", "22", "23",