aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2013-08-10 21:29:16 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2013-08-10 21:29:16 +0000
commit33b09b4674d97971337b68db045c9bd7ab9197f3 (patch)
treee7f2ade76dccbce4174523a7acf73126ce800c95 /epan
parentaaf75afbffe9f50685811c9cda82c90bfe636d4a (diff)
Fix (-W)documentation error found by Clang
./packet-cell_broadcast.h:33:13: error: empty paragraph passed to '@param' command [-Werror,-Wdocumentation] * @param tvb ~~~~~~~~~^ ./packet-cell_broadcast.h:34:14: error: empty paragraph passed to '@param' command [-Werror,-Wdocumentation] * @param tree ~~~~~~~~~~^ ./packet-cell_broadcast.h:35:16: error: empty paragraph passed to '@param' command [-Werror,-Wdocumentation] * @param offset ~~~~~~~~~~~~^ ./packet-cell_broadcast.h:43:13: error: empty paragraph passed to '@param' command [-Werror,-Wdocumentation] * @param tvb ~~~~~~~~~^ ./packet-cell_broadcast.h:44:14: error: empty paragraph passed to '@param' command [-Werror,-Wdocumentation] * @param tree ~~~~~~~~~~^ ./packet-cell_broadcast.h:45:16: error: empty paragraph passed to '@param' command [-Werror,-Wdocumentation] * @param offset ~~~~~~~~~~~~^ ./packet-cell_broadcast.h:53:13: error: empty paragraph passed to '@param' command [-Werror,-Wdocumentation] * @param tvb ~~~~~~~~~^ ./packet-cell_broadcast.h:54:15: error: empty paragraph passed to '@param' command [-Werror,-Wdocumentation] * @param pinfo ~~~~~~~~~~~^ ./packet-cell_broadcast.h:55:14: error: empty paragraph passed to '@param' command [-Werror,-Wdocumentation] * @param tree ~~~~~~~~~~^ svn path=/trunk/; revision=51263
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-cell_broadcast.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/epan/dissectors/packet-cell_broadcast.h b/epan/dissectors/packet-cell_broadcast.h
index 26e89bee1c..ad9547c296 100644
--- a/epan/dissectors/packet-cell_broadcast.h
+++ b/epan/dissectors/packet-cell_broadcast.h
@@ -30,9 +30,9 @@
/**
* Dissects the GSM/UMTS/SABP Message Identifier
*
- * @param tvb
- * @param tree
- * @param offset
+ * @param tvb the tv buffer of the current data
+ * @param tree the tree to append this item to
+ * @param offset the offset in the tvb
*/
void dissect_cbs_message_identifier(tvbuff_t *tvb, proto_tree *tree, guint16 offset);
@@ -40,9 +40,9 @@ void dissect_cbs_message_identifier(tvbuff_t *tvb, proto_tree *tree, guint16 off
/**
* Decodes the GSM/UMTS/SABP message Serial Number
*
- * @param tvb
- * @param tree
- * @param offset
+ * @param tvb the tv buffer of the current data
+ * @param tree the tree to append this item to
+ * @param offset the offset in the tvb
*/
void dissect_cbs_serial_number(tvbuff_t *tvb, proto_tree *tree, guint16 offset);
@@ -50,9 +50,9 @@ void dissect_cbs_serial_number(tvbuff_t *tvb, proto_tree *tree, guint16 offset);
/**
* Dissects UMTS/SABP Cell Broadcast Message
*
- * @param tvb
- * @param pinfo
- * @param tree
+ * @param tvb the tv buffer of the current data
+ * @param pinfo the packet info of the current data
+ * @param tree the tree to append this item to
*/
guint16 dissect_umts_cell_broadcast_message(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree);