Skip to content

Commit 63da0cb

Browse files
committed
fixed:build error
1 parent acc91a7 commit 63da0cb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

XEngine_Source/StorageModule_APIHelp/APIHelp_Distributed/APIHelp_Distributed.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ bool CAPIHelp_Distributed::APIHelp_Distributed_UPStorage(list<XENGINE_STORAGEBUC
340340
_tcsxcat(tszFilePath, _X("/*"));
341341
}
342342
}
343-
SystemApi_File_EnumFile(tszFilePath, &ppListFile, &nListCount, NULL, NULL, true, 1);
343+
SystemApi_File_EnumFile(tszFilePath, &ppListFile, &nListCount, true, 1);
344344
for (int j = 0; j < nListCount; j++)
345345
{
346346
struct _xtstat st_FStat;

XEngine_Source/StorageModule_Database/Database_Memory/Database_Memory.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ bool CDatabase_Memory::Database_Memory_Flush()
288288
_tcsxcpy(tszFoundDir, stl_ListIterator->tszFilePath);
289289
_tcsxcat(tszFoundDir, _X("/*"));
290290

291-
SystemApi_File_EnumFile(tszFoundDir, &pptszListFile, &nListCount, NULL, NULL, true, 1);
291+
SystemApi_File_EnumFile(tszFoundDir, &pptszListFile, &nListCount, true, 1);
292292
for (int i = 0; i < nListCount; i++)
293293
{
294294
int nHashLen = 0;

XEngine_Source/XEngine_StorageApp/Storage_APPTask/Storage_TaskManage.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ bool XEngine_Task_Manage(LPCXSTR lpszAPIName, LPCXSTR lpszClientAddr, LPCXSTR lp
319319
_tcsxcat(tszRealDir, _X("/*"));
320320
}
321321
}
322-
if (!SystemApi_File_EnumFile(tszRealDir, &ppszListDir, &nListCount, NULL, NULL, true, 2))
322+
if (!SystemApi_File_EnumFile(tszRealDir, &ppszListDir, &nListCount, true, 2))
323323
{
324324
st_HDRParam.bIsClose = true;
325325
st_HDRParam.nHttpCode = 404;

0 commit comments

Comments
 (0)