Fix build, sorry. Thanks Timo.

svn path=/trunk/; revision=48080
This commit is contained in:
Gabriel Ilardi 2010-07-16 13:37:29 +00:00
parent e6d5126886
commit 386c15f491

View file

@ -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 */
}