1
0
Fork 0

TRI_CreateRecursiveDirectory returns an int, but the function prototype says it returns a bool (the return code is not checked in the source code, so it is not a problem).

This commit is contained in:
Guido Reina 2013-05-26 18:44:35 +02:00
parent 0331ff7993
commit 7decf1560a
2 changed files with 2 additions and 2 deletions

View File

@ -385,7 +385,7 @@ bool TRI_ExistsFile (char const* path) {
/// @brief creates a directory, recursively
////////////////////////////////////////////////////////////////////////////////
bool TRI_CreateRecursiveDirectory (char const* path) {
int TRI_CreateRecursiveDirectory (char const* path) {
char* copy;
char* p;
char* s;

View File

@ -91,7 +91,7 @@ bool TRI_ExistsFile (char const* path);
/// @brief creates a directory, recursively
////////////////////////////////////////////////////////////////////////////////
bool TRI_CreateRecursiveDirectory (char const* path);
int TRI_CreateRecursiveDirectory (char const* path);
////////////////////////////////////////////////////////////////////////////////
/// @brief creates a directory