From: Alexis La Goutte Date: Thu, 21 May 2015 11:25:38 +0000 (+0200) Subject: fix parameter 'lldpctl' not found in the function declaration [-Wdocumentation] X-Git-Tag: 0.7.16~24^2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b35cfd03d8c24f4e5266f9745d28a3b2dea76692;p=thirdparty%2Flldpd.git fix parameter 'lldpctl' not found in the function declaration [-Wdocumentation] --- diff --git a/src/lib/lldpctl.h b/src/lib/lldpctl.h index 5bbda098..450ddd98 100644 --- a/src/lib/lldpctl.h +++ b/src/lib/lldpctl.h @@ -107,7 +107,7 @@ typedef struct lldpctl_conn_t lldpctl_conn_t; /** * Callback function invoked to send data to lldpd. * - * @param lldpctl Handle to the connection to lldpd. + * @param conn Handle to the connection to lldpd. * @param data Bytes to be sent. * @param length Length of provided data. * @param user_data Provided user data. @@ -121,7 +121,7 @@ typedef ssize_t (*lldpctl_send_callback)(lldpctl_conn_t *conn, /** * Callback function invoked to receive data from lldpd. * - * @param lldpctl Handle to the connection to lldpd. + * @param conn Handle to the connection to lldpd. * @param data Buffer for receiving data * @param length Maximum bytes we can receive * @param user_data Provided user data.