diff options
author | Marvin Borner | 2024-01-18 23:07:21 +0100 |
---|---|---|
committer | Marvin Borner | 2024-01-18 23:07:21 +0100 |
commit | 5c713d1e2da06b50fa0016086c2e8443624cbb68 (patch) | |
tree | 152e71c0e985daf0d1c550784a8af7abca86e239 /src/targets/unblc.c | |
parent | 11a94bd667c706466e7c281f59e918155cba1321 (diff) |
Bitmaps should've been recursive
I think? Maybe the topological sort implementation is just wrong
Diffstat (limited to 'src/targets/unblc.c')
-rw-r--r-- | src/targets/unblc.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/targets/unblc.c b/src/targets/unblc.c index 1b59f7f..2d10418 100644 --- a/src/targets/unblc.c +++ b/src/targets/unblc.c @@ -40,7 +40,6 @@ static void fprint_unblc(struct term *term, struct bloc_parsed *bloc, static void write_unblc(struct bloc_parsed *bloc, FILE *file) { fprint_unblc(bloc->entries[bloc->length - 1], bloc, file); - fprintf(file, "\n"); } struct target_spec target_unblc = { |