diff options
Diffstat (limited to 'src/echar/char.c')
-rw-r--r-- | src/echar/char.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/echar/char.c b/src/echar/char.c index 965fd35..205f703 100644 --- a/src/echar/char.c +++ b/src/echar/char.c @@ -13,6 +13,7 @@ #include "common/mmo.h" #include "common/socket.h" #include "common/strlib.h" +#include "common/sql.h" #include "common/timer.h" #include "char/char.h" #include "char/inter.h" @@ -225,7 +226,7 @@ void send_additional_slots(int fd, struct char_session_data* sd) if (!sd || sd->version < 9) return; - SqlStmt* stmt = SQL->StmtMalloc(inter->sql_handle); + struct SqlStmt* stmt = SQL->StmtMalloc(inter->sql_handle); if (stmt == NULL) { SqlStmt_ShowDebug(stmt); |