summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2001-09-08 19:35:27 +0000
committerMarc Laukien <marc@zeroc.com>2001-09-08 19:35:27 +0000
commit2795ef3c577c32750340f3664f8a7fd0650246db (patch)
tree9d8067271f6c71281f45a9ea2480fed2b4e1bac3 /cpp/src
parentmake depend (diff)
downloadice-2795ef3c577c32750340f3664f8a7fd0650246db.tar.bz2
ice-2795ef3c577c32750340f3664f8a7fd0650246db.tar.xz
ice-2795ef3c577c32750340f3664f8a7fd0650246db.zip
Fixes
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/IcePack/Parser.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/cpp/src/IcePack/Parser.cpp b/cpp/src/IcePack/Parser.cpp
index 06386e17e19..394fd143def 100644
--- a/cpp/src/IcePack/Parser.cpp
+++ b/cpp/src/IcePack/Parser.cpp
@@ -216,6 +216,7 @@ IcePack::Parser::getInput(char* buf, int result, int maxSize)
error("input in flex scanner failed");
buf[0] = EOF;
result = 1;
+ return;
}
result = n;
@@ -230,6 +231,9 @@ IcePack::Parser::getInput(char* buf, int result, int maxSize)
result = 1;
}
}
+
+ cout << buf << endl;
+ cout << result << endl;
}
void