Fix (-W)documentation error found by Clang

packet-9p.c:342:16: error: not a Doxygen trailing comment [-Werror,-Wdocumentation]
        guint16  len; /*< Length of the string */
                      ^~~
                      /**<
packet-9p.c:343:13: error: not a Doxygen trailing comment [-Werror,-Wdocumentation]
        char *str; /*< The string */
                   ^~~
                   /**<
packet-9p.c:364:15: error: not a Doxygen trailing comment [-Werror,-Wdocumentation]
        guint8 type; /*< Type */
                     ^~~
                     /**<
packet-9p.c:365:19: error: not a Doxygen trailing comment [-Werror,-Wdocumentation]
        guint32 version; /*< Monotonically incrementing version number */
                         ^~~
                         /**<
packet-9p.c:366:16: error: not a Doxygen trailing comment [-Werror,-Wdocumentation]
        guint64 path; /*< Per-server-unique ID for a file system element */
                      ^~~
                      /**<
5 errors generated

svn path=/trunk/; revision=51260
This commit is contained in:
Alexis La Goutte 2013-08-10 21:28:50 +00:00
parent d26b7fc516
commit c28b726878
1 changed files with 5 additions and 5 deletions

View File

@ -339,8 +339,8 @@ enum _9p_qid_t {
*/
struct _9p_str {
guint16 len; /*< Length of the string */
char *str; /*< The string */
guint16 len; /* Length of the string */
char *str; /* The string */
};
/**
@ -361,9 +361,9 @@ struct _9p_str {
*/
struct _9p_qid {
guint8 type; /*< Type */
guint32 version; /*< Monotonically incrementing version number */
guint64 path; /*< Per-server-unique ID for a file system element */
guint8 type; /* Type */
guint32 version; /* Monotonically incrementing version number */
guint64 path; /* Per-server-unique ID for a file system element */
};