From c2706d61109bf7a708033789b8c70322243a866c Mon Sep 17 00:00:00 2001 From: Sam Hocevar Date: Wed, 16 Jul 2008 13:06:39 +0000 Subject: [PATCH] * cucul/file.c: fix a typo causing build failures when zlib is not here. --- cucul/file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cucul/file.c b/cucul/file.c index 24ff4a1..60e3950 100644 --- a/cucul/file.c +++ b/cucul/file.c @@ -112,7 +112,7 @@ cucul_file_t *cucul_file_open(char const *path, const char *mode) } } # else - fp->f = fopen(path, fmode); + fp->f = fopen(path, mode); if(!fp->f) {