From cf3ec608f736765ec9852eed5e611848a25de9a4 Mon Sep 17 00:00:00 2001 From: Robert Mustacchi Date: Wed, 20 May 2020 09:37:32 -0700 Subject: 12768 12392 regressed ftello64 behavior Reviewed by: Andy Fiddaman Reviewed by: John Levon Reviewed by: Andrew Stormont Approved by: Dan McDonald --- usr/src/lib/libc/port/stdio/ftell.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'usr/src/lib/libc') diff --git a/usr/src/lib/libc/port/stdio/ftell.c b/usr/src/lib/libc/port/stdio/ftell.c index dae2abea03..31aabec082 100644 --- a/usr/src/lib/libc/port/stdio/ftell.c +++ b/usr/src/lib/libc/port/stdio/ftell.c @@ -91,7 +91,7 @@ ftell_common(FILE *iop) tres += adjust; FUNLOCKFILE(lk); - return ((long)tres); + return (tres); } long -- cgit v1.2.3