scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

commit 5c0bbb5ff6603cf20c4e3f4ec16dd7b60799cb85
parent 20934ed2f01b5ff6cb1c2398e988adc27fd34b2f
Author: Xavier Del Campo Romero <xavi.dcr@tutanota.com>
Date:   Mon,  6 Jun 2022 15:34:55 +0200

libc: remove redundant semicolon

Diffstat:
Msrc/libc/stdio/_fpopen.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/libc/stdio/_fpopen.c b/src/libc/stdio/_fpopen.c @@ -12,7 +12,7 @@ _fpopen(const char *restrict fname, const char *restrict mode, FILE * restrict fp) { - int i, flags, fd, rw, bin, rights;; + int i, flags, fd, rw, bin, rights; flags = rw = bin = 0; rights = 0666;