diff options
Diffstat (limited to 'Build/source/texk/kpathsea/atou.c')
-rw-r--r-- | Build/source/texk/kpathsea/atou.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Build/source/texk/kpathsea/atou.c b/Build/source/texk/kpathsea/atou.c index c609cc1d2f2..54edb046b82 100644 --- a/Build/source/texk/kpathsea/atou.c +++ b/Build/source/texk/kpathsea/atou.c @@ -18,12 +18,11 @@ #include "config.h" unsigned -atou P1C(const_string, s) +atou (const_string s) { int i = atoi (s); if (i < 0) FATAL1 ("I expected a positive number, not %d", i); - return i; } |