Skip to content

Commit

Permalink
Prefer pre-C99 comments
Browse files Browse the repository at this point in the history
  • Loading branch information
jedisct1 committed Apr 7, 2019
1 parent bb9781d commit 1a65b7a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/tests.c
Expand Up @@ -412,8 +412,10 @@ int
main(void)
{
#if defined(_WIN32)
// On Windows, disable the "Abort - Retry - Ignore" GUI dialog that otherwise pops up on
// assertion failure.
/*
* On Windows, disable the "Abort - Retry - Ignore" GUI dialog that otherwise pops up on
* assertion failure.
*/
_set_abort_behavior(0, _WRITE_ABORT_MSG | _CALL_REPORTFAULT);
#endif

Expand Down

0 comments on commit 1a65b7a

Please sign in to comment.