diff options
-rw-r--r-- | git_part.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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," "); } } |