summaryrefslogtreecommitdiff
path: root/libs/pbd/file_utils.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2015-10-20 15:08:02 +0200
committerRobin Gareus <robin@gareus.org>2015-10-20 15:49:59 +0200
commitaf3ffc8610ff66728f2e5313349f0f7a5c19981b (patch)
treedbaa9086c81bdafe9324e411abcbf35371a83fbc /libs/pbd/file_utils.cc
parent52e75f5a45180b3ea00329a941867b4f165dbc86 (diff)
NOOP, re-indent
Diffstat (limited to 'libs/pbd/file_utils.cc')
-rw-r--r--libs/pbd/file_utils.cc28
1 files changed, 14 insertions, 14 deletions
diff --git a/libs/pbd/file_utils.cc b/libs/pbd/file_utils.cc
index 1f72ce2408..4279688157 100644
--- a/libs/pbd/file_utils.cc
+++ b/libs/pbd/file_utils.cc
@@ -440,29 +440,29 @@ remove_directory_internal (const string& dir, size_t* size, vector<string>* path
get_paths (tmp_paths, dir, just_remove_files, true);
for (vector<string>::const_iterator i = tmp_paths.begin();
- i != tmp_paths.end(); ++i) {
+ i != tmp_paths.end(); ++i) {
- if (g_stat (i->c_str(), &statbuf)) {
+ if (g_stat (i->c_str(), &statbuf)) {
continue;
}
- if (::g_remove (i->c_str())) {
- error << string_compose (_("cannot remove path %1 (%2)"), *i, strerror (errno))
- << endmsg;
- ret = 1;
- }
+ if (::g_remove (i->c_str())) {
+ error << string_compose (_("cannot remove path %1 (%2)"), *i, strerror (errno))
+ << endmsg;
+ ret = 1;
+ }
- if (paths) {
- paths->push_back (Glib::path_get_basename(*i));
- }
+ if (paths) {
+ paths->push_back (Glib::path_get_basename(*i));
+ }
- if (size) {
- *size += statbuf.st_size;
- }
+ if (size) {
+ *size += statbuf.st_size;
+ }
}
- return ret;
+ return ret;
}
int