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 5b5a98e5a1b..68b8dc63dbe 100644 --- a/src/casefiddle.c +++ b/src/casefiddle.c @@ -285,7 +285,7 @@ do_casify_multibyte_string (struct casing_context *ctx, Lisp_Object obj) representation of the character is at the beginning of the buffer. This is why we don’t need a separate struct casing_str_buf object, and can write directly to the destination. */ - verify (offsetof (struct casing_str_buf, data) == 0); + static_assert (offsetof (struct casing_str_buf, data) == 0); ptrdiff_t size = SCHARS (obj), n; USE_SAFE_ALLOCA; |