Author: pschweitzer Date: Sat Apr 6 23:10:55 2013 New Revision: 58698
URL: http://svn.reactos.org/svn/reactos?rev=58698&view=rev Log: [CRT] Fix format according to var
Modified: trunk/reactos/lib/sdk/crt/misc/assert.c
Modified: trunk/reactos/lib/sdk/crt/misc/assert.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/misc/assert.c?r... ============================================================================== --- trunk/reactos/lib/sdk/crt/misc/assert.c [iso-8859-1] (original) +++ trunk/reactos/lib/sdk/crt/misc/assert.c [iso-8859-1] Sat Apr 6 23:10:55 2013 @@ -35,7 +35,7 @@ (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(); }