mirror of
https://github.com/wolfcw/libfaketime.git
synced 2026-05-17 00:26:16 +03:00
silence minor type warning in libmallocintercept.c
This commit is contained in:
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user