(svn r20689) -Codechange: Make some global functions used in 1 .cpp file static in that file.

This commit is contained in:
alberth
2010-08-29 15:58:43 +00:00
parent a48c4ff840
commit 2b4da1d345
12 changed files with 6 additions and 13 deletions

View File

@@ -426,7 +426,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
*/
void FioCreateDirectory(const char *name)
static void FioCreateDirectory(const char *name)
{
#if defined(WIN32) || defined(WINCE)
CreateDirectory(OTTD2FS(name), NULL);