mirror of https://gitee.com/bigwinds/arangodb
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:
parent
0331ff7993
commit
7decf1560a
|
@ -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;
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue