Fix dereferencing strings.

This commit is contained in:
2021-03-14 18:12:56 +00:00
parent 4b75cd3e71
commit b1f7226cfa
17 changed files with 110 additions and 110 deletions

View File

@@ -73,8 +73,8 @@ void DirectoryDepth(const char* path)
while(!rc)
{
memset(&filename, 0, 9);
sprintf(&filename, "%08d", pos);
memset(filename, 0, 9);
sprintf(filename, "%08d", pos);
rc = __os2_mkdir(filename);
if(!rc) rc = __os2_chdir(filename);