aboutsummaryrefslogtreecommitdiff
path: root/libbb/remove_file.c
diff options
context:
space:
mode:
Diffstat (limited to 'libbb/remove_file.c')
-rw-r--r--libbb/remove_file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/remove_file.c b/libbb/remove_file.c
index 2fa6596ee..92534a1c5 100644
--- a/libbb/remove_file.c
+++ b/libbb/remove_file.c
@@ -59,7 +59,7 @@ int remove_file(const char *path, int flags)
59 return 0; 59 return 0;
60 } 60 }
61 61
62 if ((dp = bb_opendir(path)) == NULL) { 62 if ((dp = opendir(path)) == NULL) {
63 return -1; 63 return -1;
64 } 64 }
65 65