Skip to content

Commit

Permalink
fix: END print for kls_showList_toFile() (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
jgabaut committed Aug 24, 2023
1 parent 7d1d8da commit 6d08443
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/koliseo.c
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ void kls_showList_toFile(Region_List l, FILE* fp) {
fprintf(fp,"--BEGIN Region--\n\n");
fprintf(fp,"Begin [%li] End [%li]\n",kls_head(l)->begin_offset,kls_head(l)->end_offset);
fprintf(fp,"Name [%s] Desc [%s]",kls_head(l)->name,kls_head(l)->desc);
printf("\n\n--END Region--");
fprintf(fp,"\n\n--END Region--");
kls_log("KLS","--BEGIN Region--");
sprintf(msg,"Begin [%li] End [%li]",kls_head(l)->begin_offset,kls_head(l)->end_offset);
kls_log("KLS",msg);
Expand Down

0 comments on commit 6d08443

Please sign in to comment.