summaryrefslogtreecommitdiff
path: root/src/alloc.c
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2017-02-18 18:16:37 -0800
committerPaul Eggert <eggert@cs.ucla.edu>2017-02-18 18:17:03 -0800
commitb2a83eed23d540b4b0ab9e0bf5605821011bfd7d (patch)
tree20545c597c19d213252bcdba7076a807ec633867 /src/alloc.c
parent7f89c208bf4bb256c67cc59351f4171c7a6b63aa (diff)
downloademacs-b2a83eed23d540b4b0ab9e0bf5605821011bfd7d.tar.gz
Use 'char *FOO' instead of 'char* FOO'
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;