diff --git a/src/common/exec/exec.cc b/src/common/exec/exec.cc index fce99420e99..fdbf81adb18 100644 --- a/src/common/exec/exec.cc +++ b/src/common/exec/exec.cc @@ -27,9 +27,7 @@ namespace px { // GCC's ingnored-attribute warning is triggered without wrapping pclose. This is likely do to the // nonnull attribute. struct pclose_deleter { - void operator()(FILE* file) const { - pclose(file); - } + void operator()(FILE* file) const { pclose(file); } }; StatusOr Exec(std::string cmd) {