aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2013-08-10 21:30:30 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2013-08-10 21:30:30 +0000
commit5672a65daa7bc0d3610daf7f9b812522fe77d351 (patch)
tree45c10867bae5fcfda17dda3b0b7b80cb06d71367 /epan
parent5741c8cba23d8ab5e114165b85677f7f4fcb59a9 (diff)
Fix (-W)documentation error found by Clang
packet-umts_fp.c:3486:12: error: empty paragraph passed to '@param' command [-Werror,-Wdocumentation] * @param tvb ~~~~~~~~~^ packet-umts_fp.c:3488:13: error: empty paragraph passed to '@param' command [-Werror,-Wdocumentation] * @param tree ~~~~~~~~~~^ packet-umts_fp.c:3489:15: error: empty paragraph passed to '@param' command [-Werror,-Wdocumentation] * @param offset ~~~~~~~~~~~~^ packet-umts_fp.c:3491:4: error: '@return' command used in a comment that is attached to a function returning void [-Werror,-Wdocumentation] * @return Void. ~^~~~~~~~~~~~ svn path=/trunk/; revision=51271
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-umts_fp.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/epan/dissectors/packet-umts_fp.c b/epan/dissectors/packet-umts_fp.c
index 619da2a323..5898ac2573 100644
--- a/epan/dissectors/packet-umts_fp.c
+++ b/epan/dissectors/packet-umts_fp.c
@@ -3483,12 +3483,11 @@ dissect_hsdsch_type_2_channel_info(tvbuff_t *tvb, packet_info *pinfo, proto_tree
* very similar to regular type two (ehs) the difference being how
* the configuration is done. NOTE: VERY EXPERIMENTAL.
*
-* @param tvb
-* @param pinfo packet info.
-* @param tree
-* @param offset
+* @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
+* @param offset the offset in the tvb
* @param p_fp_info FP-packet information
-* @return Void.
*/
static
void dissect_hsdsch_common_channel_info(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,