diff options
Diffstat (limited to 'src/casefiddle.c')
| -rw-r--r-- | src/casefiddle.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/casefiddle.c b/src/casefiddle.c index b252f07ae13..4cf15433c35 100644 --- a/src/casefiddle.c +++ b/src/casefiddle.c | |||
| @@ -285,7 +285,7 @@ do_casify_multibyte_string (struct casing_context *ctx, Lisp_Object obj) | |||
| 285 | representation of the character is at the beginning of the | 285 | representation of the character is at the beginning of the |
| 286 | buffer. This is why we don’t need a separate struct | 286 | buffer. This is why we don’t need a separate struct |
| 287 | casing_str_buf object, and can write directly to the destination. */ | 287 | casing_str_buf object, and can write directly to the destination. */ |
| 288 | verify (offsetof (struct casing_str_buf, data) == 0); | 288 | static_assert (offsetof (struct casing_str_buf, data) == 0); |
| 289 | 289 | ||
| 290 | ptrdiff_t size = SCHARS (obj), n; | 290 | ptrdiff_t size = SCHARS (obj), n; |
| 291 | USE_SAFE_ALLOCA; | 291 | USE_SAFE_ALLOCA; |