aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorKevin Bracey <kevin.bracey@arm.com>2016-01-12 18:41:38 +0200
committerJoão Valverde <j@v6e.pt>2016-01-12 16:52:11 +0000
commit62abe43e07b9cca4473d7e43aaa77e2e9a1510b9 (patch)
tree11f000f8befc3305bc11c355c893a6053e65429b /epan
parent01d2ab3925a1523e85d4c84086bbc939e6eecd70 (diff)
Fix FT_UINT24 comment error
Displayed as 6 hex digits, not 3. Change-Id: I61f9b41d4bd846ff74fac24b0651c7243c9c9e51 Reviewed-on: https://code.wireshark.org/review/13235 Reviewed-by: João Valverde <j@v6e.pt>
Diffstat (limited to 'epan')
-rw-r--r--epan/ftypes/ftypes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/ftypes/ftypes.h b/epan/ftypes/ftypes.h
index 5e363af3ca..92bc68f83f 100644
--- a/epan/ftypes/ftypes.h
+++ b/epan/ftypes/ftypes.h
@@ -38,7 +38,7 @@ enum ftenum {
FT_BOOLEAN, /* TRUE and FALSE come from <glib.h> */
FT_UINT8,
FT_UINT16,
- FT_UINT24, /* really a UINT32, but displayed as 3 hex-digits if FD_HEX*/
+ FT_UINT24, /* really a UINT32, but displayed as 6 hex-digits if FD_HEX*/
FT_UINT32,
FT_UINT40, /* really a UINT64, but displayed as 10 hex-digits if FD_HEX*/
FT_UINT48, /* really a UINT64, but displayed as 12 hex-digits if FD_HEX*/