summaryrefslogtreecommitdiff
path: root/src/common/malloc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/malloc.h')
-rw-r--r--src/common/malloc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/malloc.h b/src/common/malloc.h
index c0b1fda84..34a26b56e 100644
--- a/src/common/malloc.h
+++ b/src/common/malloc.h
@@ -71,7 +71,7 @@ struct malloc_interface {
void* (*calloc )(size_t num, size_t size, const char *file, int line, const char *func);
void* (*realloc )(void *p, size_t size, const char *file, int line, const char *func);
char* (*astrdup )(const char *p, const char *file, int line, const char *func);
- void (*free ) (void *p, const char *file, int line, const char *func);
+ void (*free )(void *p, const char *file, int line, const char *func);
void (*memory_check)(void);
bool (*verify_ptr)(void* ptr);