You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
blockmark_t*m=LAST_BLOCK(block, block_size); // start with the end
208
-
ssize_tmaxsize=0;
208
+
size_tmaxsize=0;
209
209
while(m->prev.x32&& (((uintptr_t)block+maxsize)<(uintptr_t)m)) { // while there is a subblock
210
210
if(!m->prev.fill&&SIZE_BLOCK(m->prev)>maxsize) {
211
211
maxsize=SIZE_BLOCK(m->prev);
@@ -388,7 +388,7 @@ int printBlockCoherent(int i)
388
388
while(m->next.x32) {
389
389
blockmark_t*n=NEXT_BLOCK(m);
390
390
if(!m->next.fill&& !n->next.fill&&n!=last) {
391
-
printf_log(LOG_NONE, "Chain contains 2 subsequent free blocks %p (%d) and %p (%d) for block %d\n", m, SIZE_BLOCK(m->next), n, SIZE_BLOCK(n->next), i);
391
+
printf_log(LOG_NONE, "Chain contains 2 subsequent free blocks %p (%zu) and %p (%zu) for block %d\n", m, SIZE_BLOCK(m->next), n, SIZE_BLOCK(n->next), i);
0 commit comments