We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12f6373 commit 2b67908Copy full SHA for 2b67908
portable/MemMang/heap_useNewlib.c
@@ -127,7 +127,7 @@ void *__wrap_malloc(size_t nbytes) {
127
void *p = __real_malloc(nbytes); // Solely for debug breakpoint...
128
return p;
129
};
130
-void *__wrap__malloc_r(void *reent, size_t nbytes) {
+void *__wrap__malloc_r(void *reent __attribute__((__unused__)), size_t nbytes) {
131
extern void * __real__malloc_r(size_t nbytes);
132
void *p = __real__malloc_r(nbytes); // Solely for debug breakpoint...
133
0 commit comments