From: David B. <dbr...@us...> - 2009-11-16 19:42:43
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Main OpenOCD repository". The branch, master has been updated via 66300d59661c94bd54a5ff5eff83f20c3217d99d (commit) from 9a98e83b49fe3541cb0d79924b13c2d86484aee2 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 66300d59661c94bd54a5ff5eff83f20c3217d99d Author: David Brownell <dbr...@us...> Date: Mon Nov 16 10:42:01 2009 -0800 "types.h" doxygen fix Signed-off-by: David Brownell <dbr...@us...> diff --git a/src/helper/types.h b/src/helper/types.h index 96a923b..03ab5f0 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)) ----------------------------------------------------------------------- Summary of changes: src/helper/types.h | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- Main OpenOCD repository |