Skip to content

Commit

Permalink
bugfix mkdir windows
Browse files Browse the repository at this point in the history
  • Loading branch information
tomthe committed Feb 28, 2023
1 parent 96b46f4 commit edbcbbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/src/load.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,7 @@ int l_process_line(char *line,struct l_context *cx,FILE *fp)

// create the directory:
#if defined(_WIN32)
_mkdir(buffer_output_dir);
mkdir(buffer_output_dir);
#else
mkdir(buffer_output_dir, 0777); // notice that 777 is different than 0777
#endif
Expand Down

0 comments on commit edbcbbd

Please sign in to comment.