diff options
author | Nobuyoshi Nakada <[email protected]> | 2023-05-20 14:00:14 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2023-05-20 21:43:30 +0900 |
commit | 8d242a33af19672977dcdcb8d32e9ad547bc0141 (patch) | |
tree | 3e15a99988ed8b084b6af40c9f94dae33a5082eb /variable.c | |
parent | 87217f26f120611d009f1b178d3cc5eaf1b8b515 (diff) |
`rb_bug` prints a newline after the message
Diffstat (limited to 'variable.c')
-rw-r--r-- | variable.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/variable.c b/variable.c index 0462da69d6..64cb07407c 100644 --- a/variable.c +++ b/variable.c @@ -1667,7 +1667,7 @@ iterate_over_shapes_with_callback(rb_shape_t *shape, rb_ivar_foreach_callback_fu iterate_over_shapes_with_callback(rb_shape_get_parent(shape), callback, itr_data); return; case SHAPE_OBJ_TOO_COMPLEX: - rb_bug("Unreachable\n"); + rb_bug("Unreachable"); } } |