From 7dc3d3a68f889efeca5af51b22bd043eff8e0926 Mon Sep 17 00:00:00 2001 From: Dean Camera Date: Sat, 8 Jan 2011 11:47:20 +0000 Subject: Minor documentation improvements. --- LUFA/Common/Attributes.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'LUFA/Common/Attributes.h') diff --git a/LUFA/Common/Attributes.h b/LUFA/Common/Attributes.h index 07852813a..67a3166b2 100644 --- a/LUFA/Common/Attributes.h +++ b/LUFA/Common/Attributes.h @@ -73,9 +73,9 @@ */ #define ATTR_WARN_UNUSED_RESULT __attribute__ ((warn_unused_result)) - /** Indicates that the specified parameters of the function are pointers which should never be NULL. + /** Indicates that the specified parameters of the function are pointers which should never be \c NULL. * When applied as a 1-based comma separated list the compiler will emit a warning if the specified - * parameters are known at compiler time to be NULL at the point of calling the function. + * parameters are known at compiler time to be \c NULL at the point of calling the function. */ #define ATTR_NON_NULL_PTR_ARG(...) __attribute__ ((nonnull (__VA_ARGS__))) -- cgit v1.2.3