aboutsummaryrefslogtreecommitdiffstats
path: root/help.c
diff options
context:
space:
mode:
Diffstat (limited to 'help.c')
-rw-r--r--help.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/help.c b/help.c
index 86013cb3..7ae0c61d 100644
--- a/help.c
+++ b/help.c
@@ -41,11 +41,7 @@ help_t *help_init( help_t **help, const char *helpfile )
*help = h = g_new0 ( help_t, 1 );
- h->fd = open( helpfile, O_RDONLY
-#ifdef _WIN32
- | O_BINARY
-#endif
- );
+ h->fd = open( helpfile, O_RDONLY );
if( h->fd == -1 )
{