fixed makefile

pull/1/head
deffpuzzl 2018-03-27 18:06:06 +08:00
parent e03d885647
commit 4b2fe7b7c7
2 changed files with 4 additions and 4 deletions

View File

@ -4,7 +4,7 @@ AR=ar
LD=ld
LN=ln
CC=cc -fPIC
CO=-c -g
CO=-c -g -DMAX_INDEX_LEN=64 -DMAX_FILED_NUM=32
LDFLAG=-shared -g
OUTLIB=../lib
OUTBIN=../bin

View File

@ -1724,9 +1724,9 @@ long lPollRequest(SATvm *pstSovm, SKCon *pstCon, TFace *pstFace, void *pstVoi
pstFace->m_lDLen = pstRun->m_lRowSize;
if(NULL == (pvData = pProtocaJava(pstSovm, pstVoid, pstFace, pvData, pstFace->m_lRows)))
{
pstFace->m_lErrno = RESOU_DISABLE;
pvData = (void *)pstFace + sizeof(TFace);
return lSendBuffer(pstCon->m_skSock, (void *)pstFace, sizeof(TFace));
pstFace->m_lErrno = RESOU_DISABLE;
pvData = (void *)pstFace + sizeof(TFace);
return lSendBuffer(pstCon->m_skSock, (void *)pstFace, sizeof(TFace));
}
pstSovm->pstVoid = pstVoid;