aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ext2fs/finddev.c
diff options
context:
space:
mode:
authorTheodore Ts'o <tytso@mit.edu>2008-08-27 23:07:54 -0400
committerTheodore Ts'o <tytso@mit.edu>2008-08-27 23:07:54 -0400
commitefc6f628e15de95bcd13e4f0ee223cb42115d520 (patch)
tree7f486b4bc1a4c8fc47f236f1e95e33feee745f7c /lib/ext2fs/finddev.c
parent4690e621acd4579dae60b6f55f58284ee805e86d (diff)
downloadandroid_external_e2fsprogs-efc6f628e15de95bcd13e4f0ee223cb42115d520.tar.gz
android_external_e2fsprogs-efc6f628e15de95bcd13e4f0ee223cb42115d520.tar.bz2
android_external_e2fsprogs-efc6f628e15de95bcd13e4f0ee223cb42115d520.zip
Remove trailing whitespace for the entire source tree
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'lib/ext2fs/finddev.c')
-rw-r--r--lib/ext2fs/finddev.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/ext2fs/finddev.c b/lib/ext2fs/finddev.c
index 2e9d70a4..56b76dfc 100644
--- a/lib/ext2fs/finddev.c
+++ b/lib/ext2fs/finddev.c
@@ -1,7 +1,7 @@
/*
* finddev.c -- this routine attempts to find a particular device in
* /dev
- *
+ *
* Copyright (C) 2000 Theodore Ts'o.
*
* %Begin-Header%
@@ -134,7 +134,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;
@@ -160,7 +160,7 @@ char *ext2fs_find_block_device(dev_t device)
return ret_path;
}
-
+
#ifdef DEBUG
int main(int argc, char** argv)
{
@@ -204,5 +204,5 @@ int main(int argc, char** argv)
}
return 0;
}
-
+
#endif