diff options
Diffstat (limited to 'WWW/Library/Implementation/HTFinger.c')
-rw-r--r-- | WWW/Library/Implementation/HTFinger.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/WWW/Library/Implementation/HTFinger.c b/WWW/Library/Implementation/HTFinger.c index 08f9763e..e6e9699b 100644 --- a/WWW/Library/Implementation/HTFinger.c +++ b/WWW/Library/Implementation/HTFinger.c @@ -86,7 +86,7 @@ PRIVATE void start_anchor ARGS1(CONST char *, href) { int i; for(i=0; i<HTML_A_ATTRIBUTES; i++) - present[i] = (i==HTML_A_HREF); + present[i] = (BOOL) (i==HTML_A_HREF); } ((CONST char **)value)[HTML_A_HREF] = href; (*targetClass.start_element)(target, HTML_A, present, @@ -191,7 +191,7 @@ PRIVATE int response ARGS5( } if (ch != LF) { - *p = ch; /* Put character in line */ + *p = (char) ch; /* Put character in line */ if (p < &line[BIG-1]) { p++; } |