diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 1998-11-22 04:36:17 -0500 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 1998-11-22 04:36:17 -0500 |
commit | 8da648ea48792ba4d8714759c557eb7c0f138b0d (patch) | |
tree | f8b64cfb576f1471732266f294147e36e412d856 /WWW | |
parent | d4a8ec3c8922a91d418bb9bc130c256c4e00d030 (diff) | |
download | lynx-snapshots-8da648ea48792ba4d8714759c557eb7c0f138b0d.tar.gz |
snapshot of project "lynx", label v2-8-2dev_6
Diffstat (limited to 'WWW')
-rw-r--r-- | WWW/Library/Implementation/HTString.c | 2 | ||||
-rw-r--r-- | WWW/Library/Implementation/HTUtils.h | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/WWW/Library/Implementation/HTString.c b/WWW/Library/Implementation/HTString.c index 00cefcd7..d8698633 100644 --- a/WWW/Library/Implementation/HTString.c +++ b/WWW/Library/Implementation/HTString.c @@ -412,7 +412,7 @@ PRIVATE char * StrAllocVsprintf ARGS4( size_t f = 0; fmt_ptr[f++] = *fmt; - while (*++fmt != '\0' && dst_len != 0 && !done) { + while (*++fmt != '\0' && !done) { fmt_ptr[f++] = *fmt; if (isdigit(*fmt)) { diff --git a/WWW/Library/Implementation/HTUtils.h b/WWW/Library/Implementation/HTUtils.h index d72c48ae..0d2f1f6c 100644 --- a/WWW/Library/Implementation/HTUtils.h +++ b/WWW/Library/Implementation/HTUtils.h @@ -33,11 +33,11 @@ #endif #if defined(__STDC__) || defined(VMS) -#define ANSI_VARARGS -#define HAVE_STDARGS_H +#define ANSI_VARARGS 1 +#define HAVE_STDARG_H 1 #endif -/* FIXME: these will be removed after completing auto-configure script */ +/* FIXME: these should be removed after completing auto-configure script */ /* Accommodate pre-autoconf Makefile */ |