From: David Brownell Date: Mon, 16 Nov 2009 18:42:01 +0000 (-0800) Subject: "types.h" doxygen fix X-Git-Tag: v0.4.0-rc1~564 X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=commitdiff_plain;h=66300d59661c94bd54a5ff5eff83f20c3217d99d "types.h" doxygen fix Signed-off-by: David Brownell --- diff --git a/src/helper/types.h b/src/helper/types.h index 96a923b81f..03ab5f0c2e 100644 --- a/src/helper/types.h +++ b/src/helper/types.h @@ -85,8 +85,8 @@ typedef bool _Bool; /** * Rounds @c m up to the nearest multiple of @c n using division. - * @params m The value to round up to @c n. - * @params n Round @c m up to a multiple of this number. + * @param m The value to round up to @c n. + * @param n Round @c m up to a multiple of this number. * @returns The rounded integer value. */ #define DIV_ROUND_UP(m, n) (((m) + (n) - 1) / (n))