OCD fixes: Adds a space before */

This commit is contained in:
Gabriel Jacobo 2013-08-21 09:43:09 -03:00
parent 3984c7d8e3
commit 695344d163
73 changed files with 270 additions and 270 deletions

View file

@ -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