silence minor type warning in libmallocintercept.c

This commit is contained in:
Wolfgang Hommel
2022-05-08 21:24:51 +02:00
parent 75cbe8e507
commit 2bfbe19f71

View File

@@ -74,7 +74,7 @@ void *malloc(size_t size) {
}
void free(void *ptr) {
void *ptr2 = ptr; ptr2 -= ptr;
long int ptr2 = (long int) ptr; ptr2 -= (long int) ptr;
print_msg("Called free() on from libmallocintercept...");
poke_faketime();
print_msg("successfully\n");