summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--typd_mlc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/typd_mlc.c b/typd_mlc.c
index 32c6f106..72a9bbe4 100644
--- a/typd_mlc.c
+++ b/typd_mlc.c
@@ -557,7 +557,7 @@ GC_API GC_ATTR_MALLOC void * GC_CALL GC_malloc_explicitly_typed(size_t lb,
op = (word *)GC_malloc_kind(lb, GC_explicit_kind);
if (EXPECT(NULL == op, FALSE))
return NULL;
- /* It is not safe to use GC_size_map[lb] to compute lg here as the */
+ /* It is not safe to use GC_size_map[lb] to compute lg here as */
/* the former might be updated asynchronously. */
lg = BYTES_TO_GRANULES(GC_size(op));
op[GRANULES_TO_WORDS(lg) - 1] = d;