summaryrefslogtreecommitdiff
path: root/lib/ext2fs/finddev.c
diff options
context:
space:
mode:
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