summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChad Versace <chad.versace@linux.intel.com>2012-08-07 11:08:49 -0700
committerChad Versace <chad.versace@linux.intel.com>2012-08-07 11:08:49 -0700
commitff537aa2660d63c5e72800379d7ebb6d708816b0 (patch)
tree7e8a08423157ced6ddc4faecdb46b61d8efe1928 /include
parentda34d6ae1af144701e6d227723105c129faa3f08 (diff)
include: Fix doxygen for waffle_init
The error enums were renamed in 8e5431e. This patch fixes the following names in the doxygen for waffle_init(): WAFFLE_ALREADY_INITIALIZED -> WAFFLE_ERROR_ALREADY_INITIALIZED WAFFLE_BAD_ATTRIBUTE -> WAFFLE_ERROR_BAD_ATTRIBUTE Signed-off-by: Chad Versace <chad.versace@linux.intel.com>
Diffstat (limited to 'include')
-rw-r--r--include/waffle/waffle_init.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/waffle/waffle_init.h b/include/waffle/waffle_init.h
index d9653a1..0423ad0 100644
--- a/include/waffle/waffle_init.h
+++ b/include/waffle/waffle_init.h
@@ -44,7 +44,7 @@ extern "C" {
///
/// This function must be called before calling any other waffle functions
/// If waffle is already initialized, then calling waffle_init() produces the
-/// error @c WAFFLE_ALREADY_INITIALIZED.
+/// error @c WAFFLE_ERROR_ALREADY_INITIALIZED.
///
///
/// ### Attributes ###
@@ -77,11 +77,11 @@ extern "C" {
///
/// ### Errors ###
///
-/// - WAFFLE_ALREADY_INITIALIZED @n
+/// - WAFFLE_ERROR_ALREADY_INITIALIZED @n
/// The library's global state has already been initialized with a call
/// to waffle_init().
///
-/// - WAFFLE_BAD_ATTRIBUTE @n
+/// - WAFFLE_ERROR_BAD_ATTRIBUTE @n
/// An item in @a attrib_list is unrecognized, missing, or has an
/// invalid value.
///