aboutsummaryrefslogtreecommitdiffstats
path: root/libversit
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@ximian.com>2001-03-10 03:34:30 +0800
committerChris Lahey <clahey@src.gnome.org>2001-03-10 03:34:30 +0800
commit62d28aab75e5975830a8b8aee152dc11247ec7f2 (patch)
treedac44888a5ef8039683446a03840d12ebebd414e /libversit
parenta7253487973018fd8465dc8ec9904b0aa11a2415 (diff)
downloadgsoc2013-evolution-62d28aab75e5975830a8b8aee152dc11247ec7f2.tar
gsoc2013-evolution-62d28aab75e5975830a8b8aee152dc11247ec7f2.tar.gz
gsoc2013-evolution-62d28aab75e5975830a8b8aee152dc11247ec7f2.tar.bz2
gsoc2013-evolution-62d28aab75e5975830a8b8aee152dc11247ec7f2.tar.lz
gsoc2013-evolution-62d28aab75e5975830a8b8aee152dc11247ec7f2.tar.xz
gsoc2013-evolution-62d28aab75e5975830a8b8aee152dc11247ec7f2.tar.zst
gsoc2013-evolution-62d28aab75e5975830a8b8aee152dc11247ec7f2.zip
Changed int to char when returning a character from a stream (since it
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.) svn path=/trunk/; revision=8617
Diffstat (limited to 'libversit')
-rw-r--r--libversit/vcc.y2
1 files changed, 1 insertions, 1 deletions
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)