aboutsummaryrefslogtreecommitdiffstats
path: root/vm_core.h
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2023-11-15 19:05:10 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2023-11-15 19:05:10 +0900
commit8f1ec6e171ad333e613cbcdc636280194a0f1dd6 (patch)
treec6f01f3c3163f93af269db0ae7731ac3baac98de /vm_core.h
parentdb8d437d4e2ff3f9c591cee1e5e1d6594e86301f (diff)
downloadruby-8f1ec6e171ad333e613cbcdc636280194a0f1dd6.tar.gz
Adjust spaces [ci skip]
Diffstat (limited to 'vm_core.h')
-rw-r--r--vm_core.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/vm_core.h b/vm_core.h
index 4c68cada70..f7f0f7f2ca 100644
--- a/vm_core.h
+++ b/vm_core.h
@@ -913,13 +913,13 @@ typedef rb_jmpbuf_t *rb_vm_tag_jmpbuf_t;
static inline void
rb_vm_tag_jmpbuf_init(rb_vm_tag_jmpbuf_t *jmpbuf)
{
- *jmpbuf = malloc(sizeof(rb_jmpbuf_t));
+ *jmpbuf = malloc(sizeof(rb_jmpbuf_t));
}
static inline void
rb_vm_tag_jmpbuf_deinit(const rb_vm_tag_jmpbuf_t *jmpbuf)
{
- free(*jmpbuf);
+ free(*jmpbuf);
}
#else
typedef rb_jmpbuf_t rb_vm_tag_jmpbuf_t;
@@ -929,13 +929,13 @@ typedef rb_jmpbuf_t rb_vm_tag_jmpbuf_t;
static inline void
rb_vm_tag_jmpbuf_init(rb_vm_tag_jmpbuf_t *jmpbuf)
{
- // no-op
+ // no-op
}
static inline void
rb_vm_tag_jmpbuf_deinit(const rb_vm_tag_jmpbuf_t *jmpbuf)
{
- // no-op
+ // no-op
}
#endif