From 942ea59e49387dbe44da8af10ba1ae88eba0cc5a Mon Sep 17 00:00:00 2001 From: x Date: Tue, 22 Oct 2019 13:28:39 +0200 Subject: [PATCH] Inverted Index: Query Processing --- idxqry.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/idxqry.c b/idxqry.c index 924cbfd..56646de 100644 --- a/idxqry.c +++ b/idxqry.c @@ -92,7 +92,7 @@ int idxopen(idxrd_t *idx, char *s) { CloseHandle( fd ); #else int fd; - if((fd = open(s, O_RDONLY| O_LARGEFILE)) < 0) + if((fd = open(s, O_RDONLY/*| O_LARGEFILE*/)) < 0) die("can't open index file '%s' rc=%d:%s\n", s, errno, strerror(errno)); struct stat sbuf; fstat((int)fd, &sbuf);