X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=lib%2Fftello.c;fp=lib%2Fftello.c;h=70cd3592e352b0f3d15561fac7299155d2714b86;hb=a2016c1de6e4884f6c8ed5cc498f3bf821c25ca4;hp=f2524084c35fb6f5c50ca146d62006f9814007b0;hpb=c7e61475680fa226bd9b8bdd469cd66914e630f5;p=debian%2Fgzip diff --git a/lib/ftello.c b/lib/ftello.c index f252408..70cd359 100644 --- a/lib/ftello.c +++ b/lib/ftello.c @@ -1,5 +1,5 @@ /* An ftello() function that works around platform bugs. - Copyright (C) 2007 Free Software Foundation, Inc. + Copyright (C) 2007, 2009, 2010 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -41,10 +41,10 @@ rpl_ftello (FILE *fp) if ((fp->_flags & __SL64) == 0) { /* Cygwin 1.5.0 through 1.5.24 failed to open stdin in 64-bit - mode; but has an ftello that requires 64-bit mode. */ + mode; but has an ftello that requires 64-bit mode. */ FILE *tmp = fopen ("/dev/null", "r"); if (!tmp) - return -1; + return -1; fp->_flags |= __SL64; fp->_seek64 = tmp->_seek64; fclose (tmp);