added int parameter to close function

This commit is contained in:
Massimiliano Pinto 2013-06-11 17:08:30 +02:00
parent 2a82ba152f
commit d46e256b9a
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@
# Copyright SkySQL Ab 2013
CC=cc
CFLAGS=-c -I../include
CFLAGS=-c -I/usr/include -I../include
SRCS= atomic.c buffer.c spinlock.c gateway.c gateway_mysql_protocol.c gw_utils.c utils.c
OBJ=$(SRCS:.c=.o)
LIBS=-lssl

View File

@ -55,7 +55,7 @@ typedef struct gw_protocol {
int (*error)(struct dcb *, int);
int (*hangup)(struct dcb *, int);
int (*accept)(struct dcb *, int);
int (*close)(struct dcb *);
int (*close)(struct dcb *, int);
} GWPROTOCOL;
/*