summaryrefslogtreecommitdiff
path: root/epan/xdlc.h
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2013-08-10 21:29:08 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2013-08-10 21:29:08 +0000
commitaaf75afbffe9f50685811c9cda82c90bfe636d4a (patch)
tree098cb57f17eaa2df032daf77e9b557ec3bb11464 /epan/xdlc.h
parent4c81d15a4a2a53eb83a0295f86731a95b4a2ceb6 (diff)
downloadwireshark-aaf75afbffe9f50685811c9cda82c90bfe636d4a.tar.gz
Fix (-W)documentation error found by Clang
../../epan/xdlc.h:48:29: error: not a Doxygen trailing comment [-Werror,-Wdocumentation] #define XDLC_N_R_MASK 0xE0 /*< basic */ ^~~ /**< ../../epan/xdlc.h:50:34: error: not a Doxygen trailing comment [-Werror,-Wdocumentation] #define XDLC_N_R_EXT_MASK 0xFE00 /*< extended */ ^~~ /**< ../../epan/xdlc.h:52:29: error: not a Doxygen trailing comment [-Werror,-Wdocumentation] #define XDLC_N_S_MASK 0x0E /*< basic */ ^~~ /**< ../../epan/xdlc.h:54:34: error: not a Doxygen trailing comment [-Werror,-Wdocumentation] #define XDLC_N_S_EXT_MASK 0x00FE /*< extended */ ^~~ /**< ../../epan/xdlc.h:60:24: error: not a Doxygen trailing comment [-Werror,-Wdocumentation] #define XDLC_P_F 0x10 /*< basic */ ^~~ /**< ../../epan/xdlc.h:61:29: error: not a Doxygen trailing comment [-Werror,-Wdocumentation] #define XDLC_P_F_EXT 0x0100 /*< extended */ ^~~ /**< svn path=/trunk/; revision=51262
Diffstat (limited to 'epan/xdlc.h')
-rw-r--r--epan/xdlc.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/epan/xdlc.h b/epan/xdlc.h
index 99cf7fd3e7..47d9dd1542 100644
--- a/epan/xdlc.h
+++ b/epan/xdlc.h
@@ -45,20 +45,20 @@
/*
* N(S) and N(R) fields, in basic and extended operation.
*/
-#define XDLC_N_R_MASK 0xE0 /*< basic */
+#define XDLC_N_R_MASK 0xE0 /**< basic */
#define XDLC_N_R_SHIFT 5
-#define XDLC_N_R_EXT_MASK 0xFE00 /*< extended */
+#define XDLC_N_R_EXT_MASK 0xFE00 /**< extended */
#define XDLC_N_R_EXT_SHIFT 9
-#define XDLC_N_S_MASK 0x0E /*< basic */
+#define XDLC_N_S_MASK 0x0E /**< basic */
#define XDLC_N_S_SHIFT 1
-#define XDLC_N_S_EXT_MASK 0x00FE /*< extended */
+#define XDLC_N_S_EXT_MASK 0x00FE /**< extended */
#define XDLC_N_S_EXT_SHIFT 1
/*
* Poll/Final bit, in basic and extended operation.
*/
-#define XDLC_P_F 0x10 /*< basic */
-#define XDLC_P_F_EXT 0x0100 /*< extended */
+#define XDLC_P_F 0x10 /**< basic */
+#define XDLC_P_F_EXT 0x0100 /**< extended */
/*
* S-format frame types.