summaryrefslogtreecommitdiff
path: root/src/SDL2/include/SDL_error.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/SDL2/include/SDL_error.h')
-rw-r--r--src/SDL2/include/SDL_error.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/SDL2/include/SDL_error.h b/src/SDL2/include/SDL_error.h
index 229b2680..5776cfa2 100644
--- a/src/SDL2/include/SDL_error.h
+++ b/src/SDL2/include/SDL_error.h
@@ -1,6 +1,6 @@
/*
Simple DirectMedia Layer
- Copyright (C) 1997-2013 Sam Lantinga <slouken@libsdl.org>
+ Copyright (C) 1997-2014 Sam Lantinga <slouken@libsdl.org>
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
@@ -48,7 +48,7 @@ extern DECLSPEC void SDLCALL SDL_ClearError(void);
* \internal
* Private error reporting function - used internally.
*/
-/*@{*/
+/* @{ */
#define SDL_OutOfMemory() SDL_Error(SDL_ENOMEM)
#define SDL_Unsupported() SDL_Error(SDL_UNSUPPORTED)
#define SDL_InvalidParamError(param) SDL_SetError("Parameter '%s' is invalid", (param))
@@ -63,7 +63,7 @@ typedef enum
} SDL_errorcode;
/* SDL_Error() unconditionally returns -1. */
extern DECLSPEC int SDLCALL SDL_Error(SDL_errorcode code);
-/*@}*//*Internal error functions*/
+/* @} *//* Internal error functions */
/* Ends C function definitions when using C++ */
#ifdef __cplusplus