diff options
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/alloc.c b/src/alloc.c index 8e0cf5d43e1..2029383dec8 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -1628,8 +1628,8 @@ static EMACS_INT total_string_size; | |||
| 1628 | presence of this cookie during GC. */ | 1628 | presence of this cookie during GC. */ |
| 1629 | 1629 | ||
| 1630 | #define GC_STRING_OVERRUN_COOKIE_SIZE 4 | 1630 | #define GC_STRING_OVERRUN_COOKIE_SIZE 4 |
| 1631 | static char string_overrun_cookie[GC_STRING_OVERRUN_COOKIE_SIZE] = | 1631 | static char const string_overrun_cookie[GC_STRING_OVERRUN_COOKIE_SIZE] = |
| 1632 | { 0xde, 0xad, 0xbe, 0xef }; | 1632 | { '\xde', '\xad', '\xbe', '\xef' }; |
| 1633 | 1633 | ||
| 1634 | #else | 1634 | #else |
| 1635 | #define GC_STRING_OVERRUN_COOKIE_SIZE 0 | 1635 | #define GC_STRING_OVERRUN_COOKIE_SIZE 0 |