Fixed the indentation in init_flist().
authorWayne Davison <wayned@samba.org>
Fri, 6 Feb 2004 07:19:57 +0000 (07:19 +0000)
committerWayne Davison <wayned@samba.org>
Fri, 6 Feb 2004 07:19:57 +0000 (07:19 +0000)
flist.c

diff --git a/flist.c b/flist.c
index 74834bf..8505b9b 100644 (file)
--- a/flist.c
+++ b/flist.c
@@ -79,10 +79,10 @@ static void output_flist(struct file_list *flist);
 
 void init_flist(void)
 {
-    struct file_struct f;
+       struct file_struct f;
 
-    /* Figure out how big the file_struct is without trailing padding */
-    min_file_struct_len = ((char*)&f.flags - (char*)&f) + sizeof f.flags;
+       /* Figure out how big the file_struct is without trailing padding */
+       min_file_struct_len = ((char*)&f.flags - (char*)&f) + sizeof f.flags;
 }