From: Wayne Davison Date: Fri, 6 Feb 2004 07:19:57 +0000 (+0000) Subject: Fixed the indentation in init_flist(). X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/1f9ae80a3e0e4efd36264f3d484a366ac8cb90a2 Fixed the indentation in init_flist(). --- diff --git a/flist.c b/flist.c index 74834bfa..8505b9ba 100644 --- 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; }