aboutsummaryrefslogtreecommitdiff
path: root/src/stdlib
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-08-23 19:53:44 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-08-23 19:53:44 -0400
commit31249ee3c9626b5d89b1e3dd446885746370bf6a (patch)
treee74123c157cdb2de914ba8f1604598e3c71722a6 /src/stdlib
parent4edddb7a3bb861a2bcb61af16395f5c9231cdd97 (diff)
Don't align trailing comments
Diffstat (limited to 'src/stdlib')
-rw-r--r--src/stdlib/lists.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stdlib/lists.c b/src/stdlib/lists.c
index 415e28a5..24383609 100644
--- a/src/stdlib/lists.c
+++ b/src/stdlib/lists.c
@@ -105,8 +105,8 @@ void List$insert_all(List_t *list, List_t to_insert, Int_t int_index, int64_t pa
fail("Invalid insertion index ", index, " for a list with length ", (int64_t)list->length);
if ((int64_t)list->free >= (int64_t)to_insert.length // Adequate free space
- && list->data_refcount == 0 // Not aliased memory
- && (int64_t)list->stride == padded_item_size) { // Contiguous list
+ && list->data_refcount == 0 // Not aliased memory
+ && (int64_t)list->stride == padded_item_size) { // Contiguous list
// If we can fit this within the list's preallocated free space, do that:
list->free -= to_insert.length;
list->length += to_insert.length;