summaryrefslogtreecommitdiff
path: root/Build/source/texk/kpathsea/xftell.c
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2011-03-03 07:20:48 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2011-03-03 07:20:48 +0000
commitf81b8f57970fd69c8522f152845efab1fd241b14 (patch)
tree77ca32eec983408c3c60004a4ead2d7594be135e /Build/source/texk/kpathsea/xftell.c
parent8cb32aae2a05b43f11952d5ab14e7b297925993e (diff)
Change xftell() return type from unsigned to signed
git-svn-id: svn://tug.org/texlive/trunk@21594 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/kpathsea/xftell.c')
-rw-r--r--Build/source/texk/kpathsea/xftell.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Build/source/texk/kpathsea/xftell.c b/Build/source/texk/kpathsea/xftell.c
index 05bdc048ae6..96d8084f181 100644
--- a/Build/source/texk/kpathsea/xftell.c
+++ b/Build/source/texk/kpathsea/xftell.c
@@ -1,6 +1,6 @@
/* xftell.c: ftell with error checking.
- Copyright 1992, 1993, 1995, 2008 Karl Berry.
+ Copyright 1992, 1993, 1995, 2008, 2011 Karl Berry.
Copyright 2005 Olaf Weber.
This library is free software; you can redistribute it and/or
@@ -19,10 +19,10 @@
#include <kpathsea/config.h>
-unsigned long
+long
xftell (FILE *f, const_string filename)
{
- long where = ftello (f);
+ long where = ftell (f);
if (where < 0)
FATAL_PERROR(filename);