aboutsummaryrefslogtreecommitdiffstats
path: root/src/sort.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/sort.c')
-rw-r--r--src/sort.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sort.c b/src/sort.c
index 24c3e94f50c..0bf51da5aff 100644
--- a/src/sort.c
+++ b/src/sort.c
@@ -1113,7 +1113,7 @@ tim_sort (Lisp_Object predicate, Lisp_Object keyfunc,
1113 { 1113 {
1114 /* Fill with valid Lisp values in case a GC occurs before all 1114 /* Fill with valid Lisp values in case a GC occurs before all
1115 keys have been computed. */ 1115 keys have been computed. */
1116 verify (NIL_IS_ZERO); 1116 static_assert (NIL_IS_ZERO);
1117 keys = allocated_keys = xzalloc (length * word_size); 1117 keys = allocated_keys = xzalloc (length * word_size);
1118 } 1118 }
1119 1119