oksh-noxz[fork] Portable OpenBSD ksh, based on the Public Domain Korn Shell (pdksh). |
|
git clone https://noxz.tech/git/oksh-noxz.git | |
oksh-noxz |
commit: cf4902e035d7dd1c64cb9ea331db11663e32befe parent: d72108a558119f3bbe62db431f69990c2b01c5ef author: larryhynes <larryhynes@users.noreply.github.com> date: Wed, 6 Jun 2018 09:18:40 +0100
asprintf.c - stray whitespacecf4902e035d7dd1c64cb9ea331db11663e32befe asprintf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/asprintf.c b/asprintf.c @@ -87,7 +87,7 @@ int asprintf(char **str, const char *fmt, ...) { va_list ap; int ret; - + *str = NULL; va_start(ap, fmt); ret = vasprintf(str, fmt, ap);