OSDN Git Service

Whitespace.
authorRob Landley <rob@landley.net>
Sat, 28 Jan 2017 23:40:55 +0000 (17:40 -0600)
committerRob Landley <rob@landley.net>
Sat, 28 Jan 2017 23:40:55 +0000 (17:40 -0600)
toys/other/acpi.c
toys/posix/ls.c

index bca5381..2f856c8 100644 (file)
@@ -140,5 +140,4 @@ void acpi_main(void)
     dirtree_read("/sys/class/power_supply", acpi_callback);
   if (toys.optflags & FLAG_t) dirtree_read("/sys/class", temp_callback);
   if (toys.optflags & FLAG_c) dirtree_read("/sys/class/thermal", cool_callback);
-
 }
index d2cef26..b306dc9 100644 (file)
@@ -323,7 +323,7 @@ static void listfiles(int dirfd, struct dirtree *indir)
     if (flags == (FLAG_1|FLAG_f)) return;
   // Read directory contents. We dup() the fd because this will close it.
   // This reads/saves contents to display later, except for in "ls -1f" mode.
-  } else  dirtree_recurse(indir, filter, dup(dirfd),
+  } else dirtree_recurse(indir, filter, dup(dirfd),
       DIRTREE_SYMFOLLOW*!!(flags&FLAG_L));
 
   // Copy linked list to array and sort it. Directories go in array because