aboutsummaryrefslogtreecommitdiffstats
path: root/executor/common_linux.h
diff options
context:
space:
mode:
Diffstat (limited to 'executor/common_linux.h')
-rw-r--r--executor/common_linux.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/executor/common_linux.h b/executor/common_linux.h
index 02c1eb82e..6980d8ca6 100644
--- a/executor/common_linux.h
+++ b/executor/common_linux.h
@@ -1928,7 +1928,6 @@ retry:
}
int i;
for (i = 0;; i++) {
- debug("unlink(%s)\n", filename);
if (unlink(filename) == 0)
break;
if (errno == EPERM) {
@@ -1956,7 +1955,6 @@ retry:
closedir(dp);
int i;
for (i = 0;; i++) {
- debug("rmdir(%s)\n", dir);
if (rmdir(dir) == 0)
break;
if (i < 100) {