This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

libU77/lstat_.c buglet


When doing make check, you get an annoying message in libf2c/libU77 that

 *** LSTAT and STAT don't agree on              array element  7

because that element is set to 0 in the lstat case.

This is solved by the following patch:

--- libf2c/libU77/lstat_.c.bak	Sat Feb 20 01:19:06 1999
+++ libf2c/libU77/lstat_.c	Sat Feb 20 01:19:33 1999
@@ -69,7 +69,6 @@
   statb[8] = buf.st_atime;
   statb[9] = buf.st_mtime;
   statb[10] = buf.st_ctime;
-  statb[6] = 0;
 #if HAVE_ST_BLKSIZE
   statb[11] = buf.st_blksize;
 #else




Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]