aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
authorPaul Eggert2017-02-18 18:16:37 -0800
committerPaul Eggert2017-02-18 18:17:03 -0800
commitb2a83eed23d540b4b0ab9e0bf5605821011bfd7d (patch)
tree20545c597c19d213252bcdba7076a807ec633867 /src/alloc.c
parent7f89c208bf4bb256c67cc59351f4171c7a6b63aa (diff)
downloademacs-b2a83eed23d540b4b0ab9e0bf5605821011bfd7d.tar.gz
emacs-b2a83eed23d540b4b0ab9e0bf5605821011bfd7d.zip
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)
7237} 7237}
7238 7238
7239static void 7239static void
7240note_suspicious_free (void* ptr) 7240note_suspicious_free (void *ptr)
7241{ 7241{
7242 struct suspicious_free_record* rec; 7242 struct suspicious_free_record *rec;
7243 7243
7244 rec = &suspicious_free_history[suspicious_free_history_index++]; 7244 rec = &suspicious_free_history[suspicious_free_history_index++];
7245 if (suspicious_free_history_index == 7245 if (suspicious_free_history_index ==
@@ -7254,7 +7254,7 @@ note_suspicious_free (void* ptr)
7254} 7254}
7255 7255
7256static void 7256static void
7257detect_suspicious_free (void* ptr) 7257detect_suspicious_free (void *ptr)
7258{ 7258{
7259 int i; 7259 int i;
7260 7260