git-svn: trunk@1494

Nigel Horne authored on 2005/04/27 18:58:18
Showing 2 changed files
... ...
@@ -14,8 +14,6 @@
14 14
  *  You should have received a copy of the GNU General Public License
15 15
  *  along with this program; if not, write to the Free Software
16 16
  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
- *
18
- * $LOG$
19 17
  */
20 18
 
21 19
 #ifndef __BLOB_H
... ...
@@ -15,7 +15,7 @@
15 15
  *  along with this program; if not, write to the Free Software
16 16
  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 17
  */
18
-static	char	const	rcsid[] = "$Id: mbox.c,v 1.239 2005/04/21 11:12:06 nigelhorne Exp $";
18
+static	char	const	rcsid[] = "$Id: mbox.c,v 1.240 2005/04/27 09:57:33 nigelhorne Exp $";
19 19
 
20 20
 #if HAVE_CONFIG_H
21 21
 #include "clamav-config.h"
... ...
@@ -3874,7 +3874,7 @@ getline(char *buffer, size_t len, FILE *fin)
3874 3874
 					ungetc(c, fin);
3875 3875
 				break;
3876 3876
 			default:
3877
-				*buffer++ = c;
3877
+				*buffer++ = (char)c;
3878 3878
 				continue;
3879 3879
 			case EOF:
3880 3880
 				break;