diff options
| author | Paul Eggert | 2017-02-18 18:16:37 -0800 |
|---|---|---|
| committer | Paul Eggert | 2017-02-18 18:17:03 -0800 |
| commit | b2a83eed23d540b4b0ab9e0bf5605821011bfd7d (patch) | |
| tree | 20545c597c19d213252bcdba7076a807ec633867 /src/alloc.c | |
| parent | 7f89c208bf4bb256c67cc59351f4171c7a6b63aa (diff) | |
| download | emacs-b2a83eed23d540b4b0ab9e0bf5605821011bfd7d.tar.gz emacs-b2a83eed23d540b4b0ab9e0bf5605821011bfd7d.zip | |
Use 'char *FOO' instead of 'char* FOO'
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 6 |
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 | ||
| 7239 | static void | 7239 | static void |
| 7240 | note_suspicious_free (void* ptr) | 7240 | note_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 | ||
| 7256 | static void | 7256 | static void |
| 7257 | detect_suspicious_free (void* ptr) | 7257 | detect_suspicious_free (void *ptr) |
| 7258 | { | 7258 | { |
| 7259 | int i; | 7259 | int i; |
| 7260 | 7260 | ||