[CRT]
authorTimo Kreuzer <timo.kreuzer@reactos.org>
Sun, 16 Dec 2012 16:44:54 +0000 (16:44 +0000)
committerTimo Kreuzer <timo.kreuzer@reactos.org>
Sun, 16 Dec 2012 16:44:54 +0000 (16:44 +0000)
Fix build

svn path=/trunk/; revision=57929

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

index 8d5220e..9ca34b8 100644 (file)
@@ -47,6 +47,6 @@ int _aexit_rtn(int exitcode)
 void _amsg_exit(int errnum)
 {
     fprintf(stderr, "runtime error - %s\n", __rt_err_msg[errnum]);
-    _aexit_rtn(-1);
+    _exit(-1);
 }