*: s/open3_or_warn/open_or_warn/ where makes sense

Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
This commit is contained in:
Denys Vlasenko
2010-10-20 13:21:22 +02:00
parent d3c5ab703b
commit bec588878b
2 changed files with 2 additions and 2 deletions

View File

@@ -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;