From 62d28aab75e5975830a8b8aee152dc11247ec7f2 Mon Sep 17 00:00:00 2001 From: Christopher James Lahey Date: Fri, 9 Mar 2001 19:34:30 +0000 Subject: Changed int to char when returning a character from a stream (since it 2001-03-09 Christopher James Lahey * libversit/vcc.y: Changed int to char when returning a character from a stream (since it needs to be able to hold EOF.) svn path=/trunk/; revision=8617 --- libversit/vcc.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libversit/vcc.y') 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) -- cgit