about summary refs log tree commit diff stats
path: root/WWW/Library
diff options
context:
space:
mode:
Diffstat (limited to 'WWW/Library')
-rw-r--r--WWW/Library/Implementation/HTFTP.c6
-rw-r--r--WWW/Library/Implementation/SGML.h5
-rw-r--r--WWW/Library/Implementation/UCMap.h4
3 files changed, 7 insertions, 8 deletions
diff --git a/WWW/Library/Implementation/HTFTP.c b/WWW/Library/Implementation/HTFTP.c
index 241f27cc..decf5599 100644
--- a/WWW/Library/Implementation/HTFTP.c
+++ b/WWW/Library/Implementation/HTFTP.c
@@ -1,5 +1,5 @@
 /*
- * $LynxId: HTFTP.c,v 1.147 2022/04/01 00:18:09 tom Exp $
+ * $LynxId: HTFTP.c,v 1.148 2023/01/05 09:17:15 tom Exp $
  *
  *			File Transfer Protocol (FTP) Client
  *			for a WorldWideWeb browser
@@ -3182,10 +3182,10 @@ static int read_directory(HTParentAnchor *parent,
 #else
 		    if (entry_info->size < 1024)
 			sprintf(string_buffer, "  %lu bytes",
-				entry_info->size);
+				(unsigned long) entry_info->size);
 		    else
 			sprintf(string_buffer, "  %luKb",
-				entry_info->size / 1024);
+				(unsigned long) entry_info->size / 1024);
 #endif
 		    PUTS(string_buffer);
 		} else if (entry_info->linkname != 0) {
diff --git a/WWW/Library/Implementation/SGML.h b/WWW/Library/Implementation/SGML.h
index a4582a54..4525fdaf 100644
--- a/WWW/Library/Implementation/SGML.h
+++ b/WWW/Library/Implementation/SGML.h
@@ -1,5 +1,5 @@
 /*
- * $LynxId: SGML.h,v 1.49 2023/01/03 00:01:32 tom Exp $
+ * $LynxId: SGML.h,v 1.50 2023/01/05 22:23:44 tom Exp $
  *			       SGML parse and stream definition for libwww
  *                             SGML AND STRUCTURED STREAMS
  *
@@ -277,8 +277,7 @@ Create an SGML parser
     extern HTStream *SGML_new(const SGML_dtd * dtd,
 			      HTParentAnchor *anchor,
 			      HTStructured * target,
-			      int extended_html)
-        ;
+			      int extended_html);
 
     extern const HTStreamClass SGMLParser;
 
diff --git a/WWW/Library/Implementation/UCMap.h b/WWW/Library/Implementation/UCMap.h
index d9feb44c..0c889690 100644
--- a/WWW/Library/Implementation/UCMap.h
+++ b/WWW/Library/Implementation/UCMap.h
@@ -1,5 +1,5 @@
 /*
- * $LynxId: UCMap.h,v 1.29 2021/06/29 22:01:12 tom Exp $
+ * $LynxId: UCMap.h,v 1.30 2023/01/05 09:17:15 tom Exp $
  */
 #ifndef UCMAP_H
 #define UCMAP_H
@@ -50,7 +50,7 @@ extern "C" {
 			      int charset_in,
 			      int charset_out,
 			      int chk_single_flag);
-#ifdef USE_JAPANESEUTF8_SUPPORT
+#ifdef EXP_CHINESEUTF8_SUPPORT
     extern UCode_t UCTransJPToUni(char *inbuf,
 				  int buflen,
 				  int charset_in);