Browse Source

Fix typo in local var; from Jim Meyering.

Paul Eggert 23 years ago
parent
commit
0e79725f53
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/xgetcwd.c

+ 1 - 1
lib/xgetcwd.c

@@ -59,7 +59,7 @@ xgetcwd ()
 
   while (1)
     {
-      char *ret;
+      char *cwd;
       buf = (char *) xrealloc (buf, buf_size);
 
       cwd = getcwd (buf, buf_size);