Commit Diff


commit - b4892b473c641328e82da2b72fc4254cff25ed42
commit + aac8f7ee700c850e64508b982d6ca3952f54f3fb
blob - dd5305d93c364c1c5ce29e7f1a172e434e8a7aaf
blob + 0fe458e1b6ab84486f136c6e79e9a1f6f3eca189
--- FICS/utils.c
+++ FICS/utils.c
@@ -36,13 +36,13 @@
 #include "utils.h"
 
 struct t_tree {
-	char		 name;
 	struct t_tree	*left, *right;
+	char		 name;
 };
 
 struct t_dirs {
-	char		 name;
 	struct t_dirs	*left, *right;
+	char		 name;
 	struct t_tree	*files;
 	time_t		 mtime;
 };