aboutsummaryrefslogtreecommitdiffstats
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
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
-rw-r--r--ChangeLog5
-rw-r--r--libversit/vcc.y2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 55a47608b5..86f0fa81ec 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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)