Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit fe7c3f6

Browse files
author
George Wright
committed
formatting
1 parent 4f471a1 commit fe7c3f6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

fml/platform/posix/file_posix.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,8 @@ bool WriteAtomically(const fml::UniqueFD& base_directory,
211211
ssize_t offset = 0;
212212

213213
while (remaining > 0) {
214-
written = FML_HANDLE_EINTR(::write(temp_file.get(), data.GetMapping() + offset, remaining));
214+
written = FML_HANDLE_EINTR(
215+
::write(temp_file.get(), data.GetMapping() + offset, remaining));
215216

216217
if (written == -1) {
217218
return false;

0 commit comments

Comments
 (0)