diff options
author | shennetsind <ind@henn.et> | 2013-05-17 15:43:04 -0300 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-05-17 15:43:04 -0300 |
commit | b0f866ca419d87fcb3625b45e2437e0a0bb1810e (patch) | |
tree | 781518d71c67b8fbfbecce28cc377bff66acc2bd /src/common/malloc.h | |
parent | 105101af513e24c2d2ff113f5d9b1aaab1326255 (diff) | |
download | hercules-b0f866ca419d87fcb3625b45e2437e0a0bb1810e.tar.gz hercules-b0f866ca419d87fcb3625b45e2437e0a0bb1810e.tar.bz2 hercules-b0f866ca419d87fcb3625b45e2437e0a0bb1810e.tar.xz hercules-b0f866ca419d87fcb3625b45e2437e0a0bb1810e.zip |
Travis Trigger Test #2
Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/common/malloc.h')
-rw-r--r-- | src/common/malloc.h | 2 |
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); |