Fix definition of _assert()
authorTimo Kreuzer <timo.kreuzer@reactos.org>
Sun, 21 Dec 2008 17:51:00 +0000 (17:51 +0000)
committerTimo Kreuzer <timo.kreuzer@reactos.org>
Sun, 21 Dec 2008 17:51:00 +0000 (17:51 +0000)
svn path=/trunk/; revision=38238

reactos/lib/sdk/crt/misc/assert.c

index f656976..c0f4d8b 100644 (file)
@@ -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);