scc

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

commit dd72d0408912f58bc41cfc2f8462dc5943d24d17
parent 34254b681ccacb54e48648f9137a6baffbb3807c
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Mon, 12 Mar 2018 14:28:02 +0100

[lib/scc] Fix lpack()

The name of the function in the file was wrong.

Diffstat:
Mlib/scc/lpack.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/scc/lpack.c b/lib/scc/lpack.c @@ -3,7 +3,7 @@ #include "../../inc/scc.h" int -bpack(unsigned char *dst, char *fmt, ...) +lpack(unsigned char *dst, char *fmt, ...) { unsigned char *bp; unsigned s;