about summary refs log tree commit diff stats
path: root/WWW/Library/Implementation/SGML.c
diff options
context:
space:
mode:
authorThomas E. Dickey <dickey@invisible-island.net>2009-01-03 18:48:31 -0500
committerThomas E. Dickey <dickey@invisible-island.net>2009-01-03 18:48:31 -0500
commit97cbb26ac61781231fdb61c9f59aaecd1583f9f4 (patch)
tree4c3f3787f280f3c8c446b0355b12ab53a565c089 /WWW/Library/Implementation/SGML.c
parentdfae7cc51e19e1ca4aa857bf858e7e0ad4fa9ce1 (diff)
downloadlynx-snapshots-97cbb26ac61781231fdb61c9f59aaecd1583f9f4.tar.gz
snapshot of project "lynx", label v2-8-7dev_12b
Diffstat (limited to 'WWW/Library/Implementation/SGML.c')
-rw-r--r--WWW/Library/Implementation/SGML.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/WWW/Library/Implementation/SGML.c b/WWW/Library/Implementation/SGML.c
index 1c851824..709586e5 100644
--- a/WWW/Library/Implementation/SGML.c
+++ b/WWW/Library/Implementation/SGML.c
@@ -1,5 +1,5 @@
 /*
- * $LynxId: SGML.c,v 1.119 2008/12/31 20:19:38 tom Exp $
+ * $LynxId: SGML.c,v 1.120 2009/01/03 01:12:28 tom Exp $
  *
  *			General SGML Parser code		SGML.c
  *			========================
@@ -80,7 +80,7 @@ static void fake_put_character(void *p GCC_UNUSED,
     }
 
 #define PUTS(str) ((*context->actions->put_string)(context->target, str))
-#define PUTC(ch)  ((*context->actions->put_character)(context->target, ch))
+#define PUTC(ch)  ((*context->actions->put_character)(context->target, (char) ch))
 #define PUTUTF8(code) (UCPutUtf8_charstring((HTStream *)context->target, \
 		      (putc_func_t*)(context->actions->put_character), code))