mirror of
git://git.musl-libc.org/musl
synced 2025-03-06 20:48:29 +01:00
remove spurious repeated semicolon in fmemopen
This commit is contained in:
parent
74fa4aac12
commit
2acf3bce01
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue