mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2025-01-18 06:30:14 +08:00
Merge pull request #65 from ws233/master
Type mismatch on 64bit platforms
This commit is contained in:
commit
b882590491
@ -361,7 +361,7 @@ inline bool LoadDataFromFile(const STRING& filename,
|
||||
size_t size = ftell(fp);
|
||||
fseek(fp, 0, SEEK_SET);
|
||||
// Pad with a 0, just in case we treat the result as a string.
|
||||
data->init_to_size(size + 1, 0);
|
||||
data->init_to_size((int)size + 1, 0);
|
||||
bool result = fread(&(*data)[0], 1, size, fp) == size;
|
||||
fclose(fp);
|
||||
return result;
|
||||
|
@ -73,7 +73,7 @@ class TRand {
|
||||
|
||||
// Remove newline (if any) at the end of the string.
|
||||
inline void chomp_string(char *str) {
|
||||
int last_index = strlen(str) - 1;
|
||||
int last_index = (int)strlen(str) - 1;
|
||||
while (last_index >= 0 &&
|
||||
(str[last_index] == '\n' || str[last_index] == '\r')) {
|
||||
str[last_index--] = '\0';
|
||||
|
Loading…
Reference in New Issue
Block a user