]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(print_dir): Rename local variable: reading -> dirp.
authorJim Meyering <jim@meyering.net>
Thu, 29 Aug 2002 09:44:23 +0000 (09:44 +0000)
committerJim Meyering <jim@meyering.net>
Thu, 29 Aug 2002 09:44:23 +0000 (09:44 +0000)
src/ls.c

index 13602af2bec5c40b6f927fd30f6823979f0fb3d1..7b2dd50f12120f9548ae272e3d69aa617b3b066b 100644 (file)
--- a/src/ls.c
+++ b/src/ls.c
@@ -2030,14 +2030,14 @@ queue_directory (const char *name, const char *realname)
 static void
 print_dir (const char *name, const char *realname)
 {
-  register DIR *reading;
+  register DIR *dirp;
   register struct dirent *next;
   register uintmax_t total_blocks = 0;
   static int first = 1;
 
   errno = 0;
-  reading = opendir (name);
-  if (!reading)
+  dirp = opendir (name);
+  if (!dirp)
     {
       error (0, errno, "%s", quotearg_colon (name));
       exit_status = 1;
@@ -2047,7 +2047,7 @@ print_dir (const char *name, const char *realname)
   if (LOOP_DETECT)
     {
       struct stat dir_stat;
-      int fd = dirfd (reading);
+      int fd = dirfd (dirp);
 
       /* If dirfd failed, endure the overhead of using stat.  */
       if ((0 <= fd
@@ -2077,7 +2077,7 @@ print_dir (const char *name, const char *realname)
 
   clear_files ();
 
-  while ((next = readdir (reading)) != NULL)
+  while ((next = readdir (dirp)) != NULL)
     if (file_interesting (next))
       {
        enum filetype type = unknown;
@@ -2091,7 +2091,7 @@ print_dir (const char *name, const char *realname)
        total_blocks += gobble_file (next->d_name, type, 0, name);
       }
 
-  if (CLOSEDIR (reading))
+  if (CLOSEDIR (dirp))
     {
       error (0, errno, "%s", quotearg_colon (name));
       exit_status = 1;