news_gui.c
changeset 2150 010d923a81a9
parent 2101 763d0d48f39c
child 2159 3b634157c3b2
--- a/news_gui.c	Thu Jul 21 06:13:17 2005 +0000
+++ b/news_gui.c	Thu Jul 21 06:31:02 2005 +0000
@@ -579,7 +579,7 @@
 	/* Copy the just gotten string to another buffer to remove any formatting
 	 * from it such as big fonts, etc. */
 	for (ptr = buffer, dest = buffer2; *ptr != '\0'; ptr++) {
-		if ((byte)*ptr == '\r') {
+		if (*ptr == '\r') {
 			dest[0] = dest[1] = dest[2] = dest[3] = ' ';
 			dest += 4;
 		} else if ((byte)*ptr >= ' ' && ((byte)*ptr < 0x88 || (byte)*ptr >= 0x99)) {