changeset 310:b271a0e8ce52

misc: fix O_BINARY
author David Demelier <markand@malikania.fr>
date Mon, 06 Sep 2021 09:56:59 +0200
parents 0858e33a762d
children f10fd1293a7e
files libmlk-core/core/zfile.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libmlk-core/core/zfile.c	Mon Sep 06 09:53:41 2021 +0200
+++ b/libmlk-core/core/zfile.c	Mon Sep 06 09:56:59 2021 +0200
@@ -39,7 +39,7 @@
 
 /* Windows thing. */
 #if !defined(O_BINARY)
-#       define O_BINARY
+#       define O_BINARY 0
 #endif
 
 #include "port.h"