diff options
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/alloc.c b/src/alloc.c index 412527b41a0..be640b6a52c 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -1706,8 +1706,7 @@ string_bytes (struct Lisp_String *s) | |||
| 1706 | /* Check validity of Lisp strings' string_bytes member in B. */ | 1706 | /* Check validity of Lisp strings' string_bytes member in B. */ |
| 1707 | 1707 | ||
| 1708 | static void | 1708 | static void |
| 1709 | check_sblock (b) | 1709 | check_sblock (struct sblock *b) |
| 1710 | struct sblock *b; | ||
| 1711 | { | 1710 | { |
| 1712 | struct sdata *from, *end, *from_end; | 1711 | struct sdata *from, *end, *from_end; |
| 1713 | 1712 | ||
| @@ -1740,8 +1739,7 @@ check_sblock (b) | |||
| 1740 | recently allocated strings. Used for hunting a bug. */ | 1739 | recently allocated strings. Used for hunting a bug. */ |
| 1741 | 1740 | ||
| 1742 | static void | 1741 | static void |
| 1743 | check_string_bytes (all_p) | 1742 | check_string_bytes (int all_p) |
| 1744 | int all_p; | ||
| 1745 | { | 1743 | { |
| 1746 | if (all_p) | 1744 | if (all_p) |
| 1747 | { | 1745 | { |
| @@ -1769,7 +1767,7 @@ check_string_bytes (all_p) | |||
| 1769 | This may catch buffer overrun from a previous string. */ | 1767 | This may catch buffer overrun from a previous string. */ |
| 1770 | 1768 | ||
| 1771 | static void | 1769 | static void |
| 1772 | check_string_free_list () | 1770 | check_string_free_list (void) |
| 1773 | { | 1771 | { |
| 1774 | struct Lisp_String *s; | 1772 | struct Lisp_String *s; |
| 1775 | 1773 | ||