minor: oops - bad copy forgot semicolon

This commit is contained in:
Mike Dirolf 2009-07-16 16:36:07 -04:00
parent 6cd976398e
commit 0d8ba577ba
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}