Skip to content

Commit db2e1a3

Browse files
committed
Build: changed default assertion level from 1 to 2 (less runtime asserts)
1 parent 469ba79 commit db2e1a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/include/sys-core.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ enum {
289289
#define ALIGN(s, a) (((s) + (a)-1) & ~((a)-1))
290290

291291
#ifndef ALEVEL
292-
#define ALEVEL 2
292+
#define ALEVEL 1
293293
#endif
294294

295295
#define ASSERT(c,m) if (!(c)) Crash(m); // (breakpoint in Crash() to see why)

0 commit comments

Comments
 (0)