Fixed missing semicolon

This commit is contained in:
SRGDamia1
2017-04-09 14:34:04 -04:00
parent e4716cabc4
commit baa9768532

View File

@@ -521,7 +521,7 @@ private:
int streamRead() {
int c = stream.read();
DBG((char)c)
DBG((char)c);
return c;
}