From 0d8ba577ba481f81ec1037153bc568ae6e012e8f Mon Sep 17 00:00:00 2001 From: Mike Dirolf Date: Thu, 16 Jul 2009 16:36:07 -0400 Subject: [PATCH] minor: oops - bad copy forgot semicolon --- ext/cbson/cbson.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/cbson/cbson.c b/ext/cbson/cbson.c index 4a3d1e6..3f147e6 100644 --- a/ext/cbson/cbson.c +++ b/ext/cbson/cbson.c @@ -541,7 +541,7 @@ static VALUE get_value(const char* buffer, int* position, int type) { VALUE microseconds = INT2NUM((millis % 1000) * 1000); value = rb_funcall(Time, rb_intern("at"), 2, seconds, microseconds); - value = rb_funcall(value, rb_intern("utc"), 0) + value = rb_funcall(value, rb_intern("utc"), 0); *position += 8; break; }