Skip to content

Commit b1b7894

Browse files
committed
style: Correct indentation
1 parent 6911ee5 commit b1b7894

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

runtime/libc/wasi_sdk_backing.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ i32 wasi_unstable_fd_fdstat_set_flags(i32 fd, u32 fdflags) {
387387
((flags & WASI_FDFLAG_APPEND ) ? O_APPEND : 0) |
388388
((flags & WASI_FDFLAG_DSYNC ) ? O_DSYNC : 0) |
389389
((flags & WASI_FDFLAG_NONBLOCK) ? O_NONBLOCK : 0) |
390-
((flags & WASI_FDFLAG_RSYNC ) ? O_RSYNC : 0) |
390+
((flags & WASI_FDFLAG_RSYNC ) ? O_RSYNC : 0) |
391391
((flags & WASI_FDFLAG_SYNC ) ? O_SYNC : 0));
392392
int err = fcntl(fd, F_SETFL, fdflags);
393393
if (err < 0) {

0 commit comments

Comments
 (0)