]> asedeno.scripts.mit.edu Git - git.git/blobdiff - builtin/cat-file.c
Merge branch 'tr/rfc-reset-doc'
[git.git] / builtin / cat-file.c
index cada5d22573a59baeee3db3f740932c9419ed9e1..76ec3fec9279f38520fa4b5b525ce2c03cc9cbb0 100644 (file)
@@ -121,7 +121,9 @@ static int cat_one_file(int opt, const char *exp_type, const char *obj_name)
 
                /* custom pretty-print here */
                if (type == OBJ_TREE) {
-                       const char *ls_args[3] = {"ls-tree", obj_name, NULL};
+                       const char *ls_args[3] = { NULL };
+                       ls_args[0] =  "ls-tree";
+                       ls_args[1] =  obj_name;
                        return cmd_ls_tree(2, ls_args, NULL);
                }