diff options
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 | ||