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

mini_ssl.c: Avoid warning: unused variable 'eng' (#1409)

This commit is contained in:
Olle Jonsson 2017-09-13 06:13:03 +02:00 committed by Nate Berkopec
parent 39dc3dfe1b
commit 5c2f1f3af4

View file

@ -447,7 +447,7 @@ VALUE raise_error(VALUE self) {
}
void Init_mini_ssl(VALUE puma) {
VALUE mod, eng;
VALUE mod;
mod = rb_define_module_under(puma, "MiniSSL");
rb_define_class_under(mod, "SSLError", rb_eStandardError);