Removed assertion list terminator (just do it like a normal linked list).

This commit is contained in:
Ryan C. Gordon 2011-04-19 14:12:56 -04:00
parent 782b8b7d6e
commit b94f23a46d
2 changed files with 11 additions and 19 deletions

View file

@ -205,7 +205,7 @@ extern DECLSPEC void SDLCALL SDL_SetAssertionHandler(
*
* <code>
* const SDL_assert_data *item = SDL_GetAssertionReport();
* while (item->condition) {
* while (item) {
* printf("'%s', %s (%s:%d), triggered %u times, always ignore: %s.\n",
* item->condition, item->function, item->filename,
* item->linenum, item->trigger_count,
@ -214,8 +214,7 @@ extern DECLSPEC void SDLCALL SDL_SetAssertionHandler(
* }
* </code>
*
* \return List of all assertions. This never returns NULL,
* even if there are no items.
* \return List of all assertions.
* \sa SDL_ResetAssertionReport
*/
extern DECLSPEC const SDL_assert_data * SDLCALL SDL_GetAssertionReport(void);