From 6229c88e862c624e41129cf550cbc6d98085d23c Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Thu, 19 Aug 1999 20:23:58 +0000 Subject: Update. * sysdeps/unix/bsd/telldir.c (seekdir): Correct type of second parameter. * sysdeps/generic/setenv.c (__add_to_environ): Initialize ep after we have the lock. --- sysdeps/unix/bsd/telldir.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sysdeps/unix/bsd') diff --git a/sysdeps/unix/bsd/telldir.c b/sysdeps/unix/bsd/telldir.c index 4ce508c718..0249344063 100644 --- a/sysdeps/unix/bsd/telldir.c +++ b/sysdeps/unix/bsd/telldir.c @@ -44,7 +44,7 @@ telldir (dirp) DIR *dirp; { struct record *new; - off_t pos; + long int pos; new = malloc (sizeof *new); if (new == NULL) @@ -71,7 +71,7 @@ telldir (dirp) void seekdir (dirp, pos) DIR *dirp; - __off_t pos; + long int pos; { struct record *r, **prevr; -- cgit v1.2.3