Skip to content

Commit 0e7d41a

Browse files
committed
Fix indentation
1 parent d9ac452 commit 0e7d41a

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

test/fs/test_enotdir.c

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
#include <sys/stat.h>
77

88
int main() {
9-
{
10-
int src_fd = open("file", O_CREAT | O_WRONLY, 0777);
11-
close(src_fd);
12-
}
13-
{
14-
int target_fd = mkdir("file/blah", 0777);
15-
printf("target_fd: %d, errno: %d %s\n", target_fd, errno, strerror(errno));
16-
}
9+
{
10+
int src_fd = open("file", O_CREAT | O_WRONLY, 0777);
11+
close(src_fd);
12+
}
13+
{
14+
int target_fd = mkdir("file/blah", 0777);
15+
printf("target_fd: %d, errno: %d %s\n", target_fd, errno, strerror(errno));
16+
}
1717
}

0 commit comments

Comments
 (0)