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

Remove unused variable n

This commit is contained in:
Matt Larraz 2016-01-14 20:44:59 -06:00
parent 246e71840e
commit d43605e3de

View file

@ -248,7 +248,7 @@ void raise_error(SSL* ssl, int result) {
VALUE engine_read(VALUE self) {
ms_conn* conn;
char buf[512];
int bytes, n, error;
int bytes, error;
Data_Get_Struct(self, ms_conn, conn);