mirror of
https://github.com/reactos/reactos.git
synced 2025-01-03 21:09:19 +00:00
Fix build, sorry. Thanks Timo.
svn path=/trunk/; revision=48080
This commit is contained in:
parent
e6d5126886
commit
386c15f491
1 changed files with 2 additions and 1 deletions
|
@ -3,6 +3,7 @@
|
|||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <signal.h>
|
||||
#include <precomp.h>
|
||||
|
||||
|
||||
/*
|
||||
|
@ -12,7 +13,7 @@ void _assert(const char *msg, const char *file, unsigned line)
|
|||
{
|
||||
/* Assertion failed at foo.c line 45: x<y */
|
||||
fprintf(stderr, "Assertion failed at %s line %d: %s\n", file, line, msg);
|
||||
DPRINT1("Assertion failed at %s line %d: %s\n", file, line, msg);
|
||||
FIXME("Assertion failed at %s line %d: %s\n", file, line, msg);
|
||||
raise(SIGABRT);
|
||||
for(;;); /* eliminate warning by mingw */
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue