From d4e0ab3014c57e519513c10b8e23d8bf66610bff Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Wed, 17 Jul 2019 21:11:53 +0200 Subject: [PATCH] Use long instead of off_t for result from ftell Signed-off-by: Stefan Weil [Retrieved from: https://github.com/tesseract-ocr/tesseract/commit/d4e0ab3014c57e519513c10b8e23d8bf66610bff] Signed-off-by: Fabrice Fontaine --- src/ccutil/scanutils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ccutil/scanutils.cpp b/src/ccutil/scanutils.cpp index da0c6918e..ea376a570 100644 --- a/src/ccutil/scanutils.cpp +++ b/src/ccutil/scanutils.cpp @@ -214,7 +214,7 @@ static int tvfscanf(FILE* stream, const char *format, va_list ap) { (CHAR_BIT * sizeof(long))]; int matchinv = 0; // Is match map inverted? unsigned char range_start = 0; - off_t start_off = ftell(stream); + long start_off = ftell(stream); // Skip leading spaces SkipSpace(stream);