1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00

Add missing return value (oh C, you're so crazy for allowing it)

This commit is contained in:
Evan Phoenix 2012-11-29 12:27:13 -08:00
parent 8ca9ba417b
commit d04ad557b8

View file

@ -107,6 +107,8 @@ static VALUE buf_append2(int argc, VALUE* argv, VALUE self) {
memcpy(b->cur, RSTRING_PTR(str), str_len);
b->cur += str_len;
}
return self;
}
static VALUE buf_to_str(VALUE self) {