summaryrefslogtreecommitdiff
path: root/misc.c
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2002-09-11 16:55:44 +0000
committerPaul Smith <psmith@gnu.org>2002-09-11 16:55:44 +0000
commit4a11acf04705a07b78d8ddf71cfc90ce2607cdd8 (patch)
tree61aafd0099e1a25e584e7f768a4d41c1732b3579 /misc.c
parent5df75e726567954acd8cec5fb247a6124fa8a9e0 (diff)
downloadgunmake-4a11acf04705a07b78d8ddf71cfc90ce2607cdd8.tar.gz
Fix HAVE_BROKEN_RESTART logic.
Fix hash.h typos (only noticed when using Windows). Update .cvsignore files.
Diffstat (limited to 'misc.c')
-rw-r--r--misc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/misc.c b/misc.c
index 669dabc..789bb70 100644
--- a/misc.c
+++ b/misc.c
@@ -879,11 +879,11 @@ atomic_stat(file, buf)
struct dirent *
atomic_readdir(dir)
- DIR *file;
+ DIR *dir;
{
struct dirent *r;
- while ((r = readdir (file, buf)) == NULL)
+ while ((r = readdir (dir)) == NULL)
if (errno != EINTR)
break;