Fixed parameter type mismatch in StreamReader.

pull/76/merge
Sherief Farouk 2013-08-09 19:10:56 -04:00
parent c8428fa67a
commit a90e208e6d
1 changed files with 1 additions and 1 deletions

View File

@ -193,7 +193,7 @@ public:
// ---------------------------------------------------------------------
/** Increase the file pointer (relative seeking) */
void IncPtr(int plus) {
void IncPtr(size_t plus) {
current += plus;
if (current > limit) {
throw DeadlyImportError("End of file or read limit was reached");