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

Remove unused vars from mini_ssl.c. (#1153)

This commit is contained in:
Francesco Rodriguez 2016-11-22 15:54:30 +01:00 committed by Nate Berkopec
parent c23c4d5a27
commit 1ed6ee0338

View file

@ -329,8 +329,7 @@ VALUE engine_extract(VALUE self) {
VALUE engine_shutdown(VALUE self) {
ms_conn* conn;
int ok, err;
char buf[512];
int ok;
Data_Get_Struct(self, ms_conn, conn);
@ -346,8 +345,6 @@ VALUE engine_shutdown(VALUE self) {
VALUE engine_init(VALUE self) {
ms_conn* conn;
int ok, err;
char buf[512];
Data_Get_Struct(self, ms_conn, conn);