mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
xfstests: fix nr of args in open calls
Merge of master-melb:xfs-cmds:32509a by kenmcd. fix nr of args in open calls
This commit is contained in:
+1
-1
@@ -1060,7 +1060,7 @@ int nbytes;
|
||||
|
||||
Oflags |= O_CREAT | O_WRONLY;
|
||||
|
||||
if ((fd = open(path, Oflags, 0666, Ocbits, Ocblks)) == -1) {
|
||||
if ((fd = open(path, Oflags, 0666)) == -1) {
|
||||
fprintf(stderr, "iogen%s: Could not create/open file %s: %s (%d)\n",
|
||||
TagName, path, SYSERR, errno);
|
||||
return -1;
|
||||
|
||||
Reference in New Issue
Block a user