This commit is contained in:
2024-03-23 01:17:46 +05:00
parent dd5788f72a
commit 9bc2a8587b
13 changed files with 183 additions and 115 deletions

View File

@@ -36,9 +36,7 @@ Maybe dir_create(const char* path){
#endif
{
char err[512];
IFWIN(
sprintf_s(err, 512, "can't create dicectory <%s>", path),
sprintf(err, "can't create dicectory <%s>", path));
ksprintf(err, 512, "can't create dicectory <%s>", path);
safethrow(err,;);
}