mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 19:26:32 +00:00
Fix definition of _assert()
svn path=/trunk/; revision=38238
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
/*
|
||||
* @implemented
|
||||
*/
|
||||
void _assert(const char *msg, const char *file, int line)
|
||||
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);
|
||||
|
||||
Reference in New Issue
Block a user