diff options
Diffstat (limited to 'src/emap/pc.c')
-rw-r--r-- | src/emap/pc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emap/pc.c b/src/emap/pc.c index 1a7ff22..898ea28 100644 --- a/src/emap/pc.c +++ b/src/emap/pc.c @@ -33,12 +33,12 @@ int langScriptId; int mountScriptId; -int epc_readparam_pre(TBL_PC **sdPtr, +int epc_readparam_pre(const TBL_PC **sdPtr, int *type) { if (*type == Const_ClientVersion) { - struct SessionExt *data = session_get_bysd(*sdPtr); + struct SessionExt *data = session_get_bysd((TBL_PC*)(*sdPtr)); hookStop(); if (!data) return 0; |