diff options
author | Galin Simeonov <gts@volconst.com> | 2021-10-01 16:06:09 +0300 |
---|---|---|
committer | Galin Simeonov <gts@volconst.com> | 2021-10-01 16:06:09 +0300 |
commit | 8ba7895f005c01f9bd6da9a6f820952335ef27d1 (patch) | |
tree | 12de85b6cd59f1024a20c168de33168502739a4f | |
parent | e3cfdf92a401dc4750a1a52b1b872b085995f34b (diff) | |
download | volgit-master.tar.gz |
-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," "); } } |