just whitespace
[platform/upstream/busybox.git] / e2fsprogs / ext2fs / finddev.c
index c459c08..552aa79 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * finddev.c -- this routine attempts to find a particular device in
- *     /dev
- * 
+ *     /dev
+ *
  * Copyright (C) 2000 Theodore Ts'o.
  *
  * %Begin-Header%
@@ -124,7 +124,7 @@ char *ext2fs_find_block_device(dev_t device)
        add_to_dirlist("/devices", &list);
        add_to_dirlist("/devfs", &list);
        add_to_dirlist("/dev", &list);
-       
+
        while (list) {
                current = list;
                list = list->next;
@@ -150,7 +150,7 @@ char *ext2fs_find_block_device(dev_t device)
        return ret_path;
 }
 
-       
+
 #ifdef DEBUG
 int main(int argc, char** argv)
 {
@@ -194,5 +194,5 @@ int main(int argc, char** argv)
        }
        return 0;
 }
-       
+
 #endif