From 0d5fc6f7361cd5cc9b1454854be27e5a33fc7ee5 Mon Sep 17 00:00:00 2001 From: "7u83@mail.ru" <7u83@mail.ru@noemail.net> Date: Sat, 17 Oct 2015 20:43:49 +0000 Subject: [PATCH] Comments corrected. FossilOrigin-Name: 3d621e94866339810c1f18be3a876b5eda76d0c590cc5381c66ae66b75060ac2 --- src/capwap/dbg.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/capwap/dbg.c b/src/capwap/dbg.c index f645536c..aa89588f 100644 --- a/src/capwap/dbg.c +++ b/src/capwap/dbg.c @@ -41,6 +41,10 @@ void (*cw_dbg_vcb) (int level, const char *fromat, va_list args) = CW_LOG_DEFAUL uint32_t cw_dbg_opt_display = 0; + +/** + * Current debug level + */ uint32_t cw_dbg_opt_level = 0; @@ -248,8 +252,8 @@ abort: * Create an ASCII hex dump of binary data * * @param data data to dump - * @len number of bytes data contains - * @return a character string with the created data ASCII dump ( must be release with free) + * @param len number of bytes to dump (size of data) + * @return a character string with the created data ASCII dump (must be released with free) */ char * cw_dbg_mkdmp( const uint8_t * data, int len) {