From a8606c5b10e4246ea508f6c9dc496bc755459b1e Mon Sep 17 00:00:00 2001 From: "7u83@mail.ru" <7u83@mail.ru@noemail.net> Date: Sun, 18 Oct 2015 06:56:28 +0000 Subject: [PATCH] Corrected a comment. FossilOrigin-Name: 2e2ba2ba740254a01d9c5e139ec6e22e77bfe928bcc50952b7dc93553b05f427 --- src/capwap/timer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/capwap/timer.h b/src/capwap/timer.h index 1b2836a6..dd99ae19 100644 --- a/src/capwap/timer.h +++ b/src/capwap/timer.h @@ -51,7 +51,7 @@ typedef time_t cw_timer_t; /** * Check if a timer is expired. - * @param t an time_t variable intializes by #cw_timer_start + * @param t a variable of type time_t intialized by #cw_timer_start * @return 0=timer is not expired\n 1=timer is expired. */ #define cw_timer_timeout(t) (time(NULL)>t ? 1 : 0)