diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | libversit/vcc.y | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2001-03-09 Christopher James Lahey <clahey@ximian.com> + + * libversit/vcc.y: Changed int to char when returning a character + from a stream (since it needs to be able to hold EOF.) + 2001-03-07 Jeffrey Stedfast <fejj@ximian.com> * configure.in: Removed --enable-assbarn-security and replaced it diff --git a/libversit/vcc.y b/libversit/vcc.y index a8c7f2883e..5c093c8044 100644 --- a/libversit/vcc.y +++ b/libversit/vcc.y @@ -552,7 +552,7 @@ static int lexWithinMode(enum LexMode mode) { return 0; } -static char lexGetc_() +static int lexGetc_() { /* get next char from input, no buffering. */ if (lexBuf.curPos == lexBuf.inputLen) |