getc() returns an int, not a char

This commit is contained in:
pvalchev 2002-02-20 21:08:46 +00:00
parent 100ed5ea21
commit c03340b37f

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-doctype_medline_cxx,v 1.1 2002/02/20 21:08:46 pvalchev Exp $
--- doctype/medline.cxx.orig Wed Feb 20 14:02:52 2002
+++ doctype/medline.cxx Wed Feb 20 14:02:40 2002
@@ -182,7 +182,7 @@ void MEDLINE::ParseRecords (const RECORD
// Search for Medline Seperator
enum { LOOK, HUNT, FOUND, START } State = HUNT;
- CHR Ch;
+ INT Ch;
CHR buf[7];
int pos = 0;