Run fmt.sh

This commit is contained in:
jD91mZM2
2018-07-08 08:51:15 +02:00
parent d3f6985ee9
commit 30d91b82b2
8 changed files with 88 additions and 27 deletions
+1 -3
View File
@@ -242,9 +242,7 @@ pub extern "C" fn fclose(stream: &mut FILE) -> c_int {
if stream.flags & constants::F_PERM == 0 {
// Not one of stdin, stdout or stderr
unsafe {
platform::free(
stream as *mut FILE as *mut c_void
);
platform::free(stream as *mut FILE as *mut c_void);
}
} else {
funlockfile(stream);