Skip to content

Commit 6fe9ee8

Browse files
committed
Fix warning with GCC 16
1 parent c8710a6 commit 6fe9ee8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

libc/malloc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1502,7 +1502,7 @@ DLMALLOC_EXPORT int mspace_mallopt(int, int);
15021502
#endif /* ABORT_ON_ASSERT_FAILURE */
15031503
#else /* DEBUG */
15041504
#ifndef assert
1505-
#define assert(x)
1505+
#define assert(x) (void)(x)
15061506
#endif
15071507
#define DEBUG 0
15081508
#endif /* DEBUG */

0 commit comments

Comments
 (0)