Skip to content
Snippets Groups Projects
Commit 2bea2c76 authored by Emilio Meschi's avatar Emilio Meschi :bicyclist_tone1:
Browse files

Revert "removed some compilation warning"

This reverts commit a56024f9
parent e0ea3fe1
No related branches found
No related tags found
No related merge requests found
......@@ -57,7 +57,7 @@ namespace filesystem {
inline bool create_directories(std::string &path) {
char tmp[PATH_MAX];
// Add terminating '/' and make a writable copy;
// Add terminating '/' and make a writtable copy;
int len = snprintf(tmp, sizeof(tmp), "%s/", path.c_str());
if (len > PATH_MAX) len = PATH_MAX;
......@@ -65,7 +65,7 @@ inline bool create_directories(std::string &path) {
for (char *p = tmp; *p; p++) {
if (*p == '/') {
// Found a new directory, ignore any subsequent back slashes
long int dir_len = p - last_backslash - 1;
int dir_len = p - last_backslash - 1;
if (dir_len > 0) {
*p = 0;
if (mkdir(tmp, S_IRWXU | S_IRWXG | S_IRWXO) < 0 && (errno != EEXIST)) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment