Issue #19: Fix bug in Latex renderer

This commit is contained in:
Mario Hüttel 2019-06-22 14:16:51 +02:00
parent d4f14c52ed
commit ed37fc0222
1 changed files with 2 additions and 1 deletions

View File

@ -94,7 +94,8 @@ static void write_layer_definitions(FILE *tex_file, GList *layer_infos, GString
g_string_printf(buffer, "l%d,", lifo->layer);
WRITEOUT_BUFFER(buffer);
}
fwrite("main}\n", sizeof(char), 1, tex_file);
g_string_printf(buffer, "main}\n");
WRITEOUT_BUFFER(buffer);
}
/**