Fixed cdecl problem

This commit is contained in:
Ladislav Zezula
2020-06-29 16:30:36 +02:00
parent 0c05d9196b
commit efa7e50ef7
2 changed files with 6 additions and 1 deletions

View File

@@ -292,7 +292,7 @@ static char * ReadListFileLine(TListFileCache * pCache, size_t * PtrLength)
return (char *)pbLineBegin;
}
static int __cdecl CompareFileNodes(const void * p1, const void * p2)
static int STORMLIB_CDECL CompareFileNodes(const void * p1, const void * p2)
{
char * szFileName1 = *(char **)p1;
char * szFileName2 = *(char **)p2;