Missed FREAD in bytecode.h
[p5sagit/p5-mst-13.2.git] / bytecode.pl
index c545f41..4553edf 100644 (file)
@@ -88,7 +88,7 @@ void byterun(FILE *fp)
 {
     dTHR;
     int insn;
-    while ((insn = FGETC()) != EOF) {
+    while ((insn = BGET_FGETC()) != EOF) {
        switch (insn) {
 EOT