From af3ffc8610ff66728f2e5313349f0f7a5c19981b Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Tue, 20 Oct 2015 15:08:02 +0200 Subject: [PATCH] NOOP, re-indent --- libs/pbd/file_utils.cc | 28 ++++++++++++++-------------- 1 file 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* path get_paths (tmp_paths, dir, just_remove_files, true); for (vector::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 -- 2.30.2