From 5c55c42eafc899ae870c4e6bebc4a27a266a2b15 Mon Sep 17 00:00:00 2001 From: Alexis La Goutte Date: Sat, 1 Oct 2016 19:12:14 +0200 Subject: [PATCH] jsmn(.h): fix warning: '@param' command used in a comment that is not attached to a function declaration [-Wdocumentation] Change-Id: Ia03fc0d1d0d4af430055f2ae3c66416922b62fd1 Reviewed-on: https://code.wireshark.org/review/18009 Petri-Dish: Alexis La Goutte Tested-by: Petri Dish Buildbot Reviewed-by: Dario Lombardo --- wsutil/jsmn.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wsutil/jsmn.h b/wsutil/jsmn.h index 6f3224749b..fc579f5d8d 100644 --- a/wsutil/jsmn.h +++ b/wsutil/jsmn.h @@ -55,9 +55,9 @@ enum jsmnerr { /** * JSON token description. - * @param type type (object, array, string etc.) - * @param start start position in JSON data string - * @param end end position in JSON data string + * type type (object, array, string etc.) + * start start position in JSON data string + * end end position in JSON data string */ typedef struct { jsmntype_t type;