Codechange: Make FioCreateDirectory public

This commit is contained in:
Niels Martin Hansen
2018-04-29 20:07:22 +02:00
committed by Michael Lutz
parent e2fa4b71c6
commit 458e441a4c
2 changed files with 2 additions and 1 deletions

View File

@@ -532,7 +532,7 @@ FILE *FioFOpenFile(const char *filename, const char *mode, Subdirectory subdir,
* Create a directory with the given name
* @param name the new name of the directory
*/
static void FioCreateDirectory(const char *name)
void FioCreateDirectory(const char *name)
{
/* Ignore directory creation errors; they'll surface later on, and most
* of the time they are 'directory already exists' errors anyhow. */