mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 01:15:42 +00:00
[CRT]
Fix format according to var svn path=/trunk/; revision=58698
This commit is contained in:
parent
ca42a3e9f5
commit
9b998f38df
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ _assert (
|
|||
(msvcrt_error_mode == _OUT_TO_STDERR))
|
||||
{
|
||||
/* Print 'Assertion failed: x<y, file foo.c, line 45' to stderr */
|
||||
fprintf(stderr, "Assertion failed: %s, file %s, line %d\n", exp, file, line);
|
||||
fprintf(stderr, "Assertion failed: %s, file %s, line %u\n", exp, file, line);
|
||||
abort();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue