diff options
Diffstat (limited to 'Build/source/texk/kpathsea/xftello.c')
-rw-r--r-- | Build/source/texk/kpathsea/xftello.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/texk/kpathsea/xftello.c b/Build/source/texk/kpathsea/xftello.c index 42f1a9b62f8..a01b42a5622 100644 --- a/Build/source/texk/kpathsea/xftello.c +++ b/Build/source/texk/kpathsea/xftello.c @@ -23,9 +23,9 @@ off_t xftello (FILE *f, const_string filename) { off_t where = ftello (f); - + if (where < 0) FATAL_PERROR(filename); - + return where; } |