mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
Fix definition of _assert()
svn path=/trunk/; revision=38238
This commit is contained in:
parent
79532867dd
commit
97d64c6776
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue