diff options
| author | LeRoyce Pearson <leroycepearson@geemili.xyz> | 2020-03-27 11:32:33 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-27 11:32:33 -0600 |
| commit | c7f4e68464e0ebd6e6d0f3230114d189e25e3dc9 (patch) | |
| tree | 1039973f89854e5256d86ecfecc87b2b61be46cd /src/os.cpp | |
| parent | 1a6c3aeec9226eba02655c77872bd01eaa9be711 (diff) | |
| parent | aec4967f36d16cfee43529bd341300f5f77af34a (diff) | |
| download | zig-c7f4e68464e0ebd6e6d0f3230114d189e25e3dc9.tar.gz zig-c7f4e68464e0ebd6e6d0f3230114d189e25e3dc9.zip | |
Merge branch 'master' into feature-file-locks
Diffstat (limited to 'src/os.cpp')
| -rw-r--r-- | src/os.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/os.cpp b/src/os.cpp index 351b61cd66..872c0270f1 100644 --- a/src/os.cpp +++ b/src/os.cpp @@ -1161,9 +1161,6 @@ Error os_update_file(Buf *src_path, Buf *dst_path) { fclose(dst_libc_file); return err; } - if (fflush(src_libc_file) == -1) { - return ErrorUnexpected; - } if (fflush(dst_libc_file) == -1) { return ErrorUnexpected; } |
