diff options
Diffstat (limited to 'libcore/helpers.c')
| -rw-r--r-- | libcore/helpers.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libcore/helpers.c b/libcore/helpers.c index 6af7bcb..9fb0bdf 100644 --- a/libcore/helpers.c +++ b/libcore/helpers.c @@ -152,9 +152,7 @@ bool FirstFileInFolder(string &path, string &extension, string &fileName) { void CreateFolder(string &path) { cString command = cString::sprintf("mkdir -p %s", path.c_str()); int ok = system(*command); - if (!ok) { - esyslog("skindesigner: error creating folder %s", path.c_str()); - } + if (!ok) {} } // trim from start |
