Add "diff-tree" program to show which files have changed between two trees.
[git.git] / init-db.c
index 25dc13f..1fcef0b 100644 (file)
--- a/init-db.c
+++ b/init-db.c
@@ -1,9 +1,14 @@
+/*
+ * GIT - The information manager from hell
+ *
+ * Copyright (C) Linus Torvalds, 2005
+ */
 #include "cache.h"
 
 int main(int argc, char **argv)
 {
        char *sha1_dir = getenv(DB_ENVIRONMENT), *path;
-       int len, i, fd;
+       int len, i;
 
        if (mkdir(".dircache", 0700) < 0) {
                perror("unable to create .dircache");
@@ -20,7 +25,7 @@ int main(int argc, char **argv)
        if (sha1_dir) {
                struct stat st;
                if (!stat(sha1_dir, &st) < 0 && S_ISDIR(st.st_mode))
-                       return;
+                       return 0;
                fprintf(stderr, "DB_ENVIRONMENT set to bad directory %s: ", sha1_dir);
        }