diff options
author | Denys Vlasenko | 2010-10-20 13:21:22 +0200 |
---|---|---|
committer | Denys Vlasenko | 2010-10-20 13:21:22 +0200 |
commit | bec588878b6d435c33d9b0aae6247715c259e3a4 (patch) | |
tree | 12b5da396307b0ae8782daa247cd4234805f8018 /coreutils | |
parent | d3c5ab703bf6f42ec11fb770b86aaf927cf6b32d (diff) | |
download | busybox-bec588878b6d435c33d9b0aae6247715c259e3a4.zip busybox-bec588878b6d435c33d9b0aae6247715c259e3a4.tar.gz |
*: s/open3_or_warn/open_or_warn/ where makes sense
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/fsync.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/fsync.c b/coreutils/fsync.c index d1fe2b5..b8b463c 100644 --- a/coreutils/fsync.c +++ b/coreutils/fsync.c @@ -27,7 +27,7 @@ int fsync_main(int argc UNUSED_PARAM, char **argv) status = EXIT_SUCCESS; do { - int fd = open3_or_warn(*argv, O_NOATIME | O_NOCTTY | O_RDONLY, 0); + int fd = open_or_warn(*argv, O_NOATIME | O_NOCTTY | O_RDONLY); if (fd == -1) { status = EXIT_FAILURE; |