summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/Utility/Utility.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/Utility/Utility.h b/include/Utility/Utility.h
index 4fb54df..8d68baa 100644
--- a/include/Utility/Utility.h
+++ b/include/Utility/Utility.h
@@ -70,13 +70,13 @@ inline mode_t findFileGlob(std::string file) {
mode_t result = -1;
if (0 == glob(file.c_str(), 0, NULL, &gl)) {
- if (0 < gl.gl_pathc && 0 == stat(gl.gl_pathv[0], &buf)) {
- result = buf.st_mode & S_IFMT;
- }
- globfree(&gl);
+ if (0 < gl.gl_pathc && 0 == stat(gl.gl_pathv[0], &buf)) {
+ result = buf.st_mode & S_IFMT;
+ }
+ globfree(&gl);
}
- return result;
+ return result;
}
#endif /* UTILITIES_H_ */