summaryrefslogtreecommitdiff
path: root/libc/stdio/fmemopen.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/stdio/fmemopen.c')
-rw-r--r--libc/stdio/fmemopen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/stdio/fmemopen.c b/libc/stdio/fmemopen.c
index eb4fa736e..ba194d726 100644
--- a/libc/stdio/fmemopen.c
+++ b/libc/stdio/fmemopen.c
@@ -142,7 +142,7 @@ FILE *fmemopen(void *s, size_t len, const char *modes)
cookie->dynbuf = 1;
*cookie->buf = 0; /* If we're appending, treat as empty file. */
}
-
+
#ifndef __BCC__
fp = fopencookie(cookie, modes, _fmo_io_funcs);
#else