summaryrefslogtreecommitdiff
path: root/object.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-11-16 17:02:35 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-11-16 17:02:35 +0000
commitb29b2962d2b58587fb1a70a3e97b109757e7586e (patch)
tree700e89868f6cd31ea72d1c584b9c155d0b0593c9 /object.c
parent6f64d9eb56ef58b73df7f653ece55742129ddbe4 (diff)
adjust indent
* object.c (rb_obj_alloc): adjust indent. * vm.c (vm_collect_usage_{insn,operand,register}): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37689 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'object.c')
-rw-r--r--object.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/object.c b/object.c
index 7bfc7895f1..0b7c1bc441 100644
--- a/object.c
+++ b/object.c
@@ -1689,8 +1689,8 @@ rb_obj_alloc(VALUE klass)
if (RUBY_DTRACE_OBJECT_CREATE_ENABLED()) {
const char * file = rb_sourcefile();
RUBY_DTRACE_OBJECT_CREATE(rb_class2name(klass),
- file ? file : "",
- rb_sourceline());
+ file ? file : "",
+ rb_sourceline());
}
obj = (*allocator)(klass);