Skip to content

Commit 3db5bcd

Browse files
committed
[libc] Format the change
1 parent e0cdb26 commit 3db5bcd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

libc/src/__support/File/file.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,8 @@ FileIOResult File::write_unlocked_fbf(const uint8_t *data, size_t len) {
121121
pos = remainder.size();
122122
} else {
123123

124-
FileIOResult result = platform_write(this, remainder.data(), remainder.size());
124+
FileIOResult result =
125+
platform_write(this, remainder.data(), remainder.size());
125126
size_t bytes_written = buf_result.value;
126127

127128
// If less bytes were written than expected, then an error occurred. Return

0 commit comments

Comments
 (0)