diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2018-12-27 10:33:52 +0000 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2018-12-27 10:33:52 +0000 |
commit | 466c1be273ce2f7354532f876250cbc3d9d6cefd (patch) | |
tree | 96125dbdd41c4501c72a67daacb90e995b73b72c /WWW/Library/Implementation/HTString.c | |
parent | fd8ff03480d588c28b9424f2976beadbe7a55a35 (diff) | |
download | lynx-snapshots-466c1be273ce2f7354532f876250cbc3d9d6cefd.tar.gz |
snapshot of project "lynx", label v2-9-0dev_0b
Diffstat (limited to 'WWW/Library/Implementation/HTString.c')
-rw-r--r-- | WWW/Library/Implementation/HTString.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/WWW/Library/Implementation/HTString.c b/WWW/Library/Implementation/HTString.c index 4a1ab43a..54d8207e 100644 --- a/WWW/Library/Implementation/HTString.c +++ b/WWW/Library/Implementation/HTString.c @@ -1,5 +1,5 @@ /* - * $LynxId: HTString.c,v 1.74 2018/02/15 01:54:27 tom Exp $ + * $LynxId: HTString.c,v 1.75 2018/12/27 10:28:12 tom Exp $ * * Case-independent string comparison HTString.c * @@ -897,7 +897,7 @@ PUBLIC_IF_FIND_LEAKS char *StrAllocVsprintf(char **pstr, #ifdef HTSprintf /* if hidden by LYLeaks stuff */ #undef HTSprintf #endif -char *HTSprintf(char **pstr, const char *fmt,...) +char *HTSprintf(char **pstr, const char *fmt, ...) { char *result = 0; size_t inuse = 0; @@ -924,7 +924,7 @@ char *HTSprintf(char **pstr, const char *fmt,...) #ifdef HTSprintf0 /* if hidden by LYLeaks stuff */ #undef HTSprintf0 #endif -char *HTSprintf0(char **pstr, const char *fmt,...) +char *HTSprintf0(char **pstr, const char *fmt, ...) { char *result = 0; va_list ap; @@ -1330,7 +1330,7 @@ void HTSABFree(bstring **ptr) * Use this function to perform formatted sprintf's onto the end of a bstring. * The bstring may contain embedded nulls; the formatted portions must not. */ -bstring *HTBprintf(bstring **pstr, const char *fmt,...) +bstring *HTBprintf(bstring **pstr, const char *fmt, ...) { bstring *result = 0; char *temp = 0; |