summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--git_part.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/git_part.c b/git_part.c
index 670a9ae..7d75b8f 100644
--- a/git_part.c
+++ b/git_part.c
@@ -267,7 +267,7 @@ static inline void print_tree_entry(struct Index_File *index_file,const char *na
}else
{
- fprintf(index_file->out,"%s ─┐",name);
+ fprintf(index_file->out,"%s",name);
increment_indentation(index_file,name);
fprintf(index_file->out,"\n");
@@ -329,7 +329,7 @@ void print_indentation_for_treelike_output(struct Index_File *out)
else
fprintf(out->out," ");
- for(j=0;j<out->offset[i]+5;++j)
+ for(j=0;j<out->offset[i]+2;++j)
fprintf(out->out," ");
}
}