about summary refs log tree commit diff stats
path: root/WWW/Library/Implementation/HTMIME.c
diff options
context:
space:
mode:
authorThomas E. Dickey <dickey@invisible-island.net>2010-09-22 10:53:56 -0400
committerThomas E. Dickey <dickey@invisible-island.net>2010-09-22 10:53:56 -0400
commitbf665822fc371159c9fc6630ab805638c58ab299 (patch)
treea85a0ee9a271bf9cde1108daca90b657f0aed5f9 /WWW/Library/Implementation/HTMIME.c
parent2bfdbc116276afc90c803427e7af7b44a0c11c66 (diff)
downloadlynx-snapshots-bf665822fc371159c9fc6630ab805638c58ab299.tar.gz
snapshot of project "lynx", label v2-8-8dev_5b
Diffstat (limited to 'WWW/Library/Implementation/HTMIME.c')
-rw-r--r--WWW/Library/Implementation/HTMIME.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/WWW/Library/Implementation/HTMIME.c b/WWW/Library/Implementation/HTMIME.c
index dc0b7bda..bbc7e2a6 100644
--- a/WWW/Library/Implementation/HTMIME.c
+++ b/WWW/Library/Implementation/HTMIME.c
@@ -1,5 +1,5 @@
 /*
- * $LynxId: HTMIME.c,v 1.73 2010/06/16 23:54:20 tom Exp $
+ * $LynxId: HTMIME.c,v 1.74 2010/09/22 00:42:30 tom Exp $
  *
  *			MIME Message Parse			HTMIME.c
  *			==================
@@ -2321,7 +2321,7 @@ static void HTmmdec_base64(char **t,
 	    if (!(p = strchr(HTmm64, s[j]))) {
 		return;
 	    }
-	    d = p - HTmm64;
+	    d = (int) (p - HTmm64);
 	    d <<= (3 - j) * 6;
 	    val += d;
 	}