summaryrefslogtreecommitdiff
path: root/userland/libc/dirent/opendir.c
diff options
context:
space:
mode:
Diffstat (limited to 'userland/libc/dirent/opendir.c')
-rw-r--r--userland/libc/dirent/opendir.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/userland/libc/dirent/opendir.c b/userland/libc/dirent/opendir.c
index efe8b6d..8f5d818 100644
--- a/userland/libc/dirent/opendir.c
+++ b/userland/libc/dirent/opendir.c
@@ -6,7 +6,6 @@ DIR *fdopendir(int fd) {
return NULL;
}
rc->fd = fd;
- rc->dir_num = 0;
return rc;
}
@@ -20,6 +19,5 @@ DIR *opendir(const char *dirname) {
return NULL;
}
rc->fd = fd;
- rc->dir_num = 0;
return rc;
}