Skip to content

Commit 1979a7a

Browse files
committed
fix variable name for windows build...
1 parent 66a9933 commit 1979a7a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ bool dirCreate(const char* path) {
252252

253253
// platform stuff...
254254
#if defined(_WIN32)
255-
if (_mkdir(sDest.c_str()) != 0) {
255+
if (_mkdir(path) != 0) {
256256
#else
257257
if (mkdir(path, S_IRWXU | S_IXGRP | S_IRGRP | S_IROTH | S_IXOTH) != 0) {
258258
#endif

0 commit comments

Comments
 (0)