mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 17:56:00 +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
|
* @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 */
|
/* Assertion failed at foo.c line 45: x<y */
|
||||||
fprintf(stderr, "Assertion failed at %s line %d: %s\n", file, line, msg);
|
fprintf(stderr, "Assertion failed at %s line %d: %s\n", file, line, msg);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue