diff options
Diffstat (limited to 'lib/falloc.c')
-rw-r--r-- | lib/falloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/falloc.c b/lib/falloc.c index 6cf8e5bb7..3839b2e5f 100644 --- a/lib/falloc.c +++ b/lib/falloc.c @@ -43,7 +43,7 @@ FD_t fadOpen(const char * path, int flags, int perms) if (flags & O_WRONLY) return NULL; - fd = ufdio->open(path, flags, perms); + fd = ufdio->_open(path, flags, perms); if (Ferror(fd)) /* XXX Fstrerror */ return NULL; |