summaryrefslogtreecommitdiff
path: root/src/alloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/alloc.c b/src/alloc.c
index 62f43669f2a..deb1ca32500 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -7237,9 +7237,9 @@ find_suspicious_object_in_range (void *begin, void *end)
}
static void
-note_suspicious_free (void* ptr)
+note_suspicious_free (void *ptr)
{
- struct suspicious_free_record* rec;
+ struct suspicious_free_record *rec;
rec = &suspicious_free_history[suspicious_free_history_index++];
if (suspicious_free_history_index ==
@@ -7254,7 +7254,7 @@ note_suspicious_free (void* ptr)
}
static void
-detect_suspicious_free (void* ptr)
+detect_suspicious_free (void *ptr)
{
int i;