mirror of
git://git.musl-libc.org/musl
synced 2025-02-11 00:17:32 +00:00
remove spurious repeated semicolon in fmemopen
This commit is contained in:
parent
74fa4aac12
commit
2acf3bce01
@ -103,7 +103,7 @@ FILE *fmemopen(void *restrict buf, size_t size, const char *restrict mode)
|
||||
f->f.buf = f->buf + UNGET;
|
||||
f->f.buf_size = sizeof f->buf - UNGET;
|
||||
if (!buf) {
|
||||
buf = f->buf2;;
|
||||
buf = f->buf2;
|
||||
memset(buf, 0, size);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user