The fundamentals of the new ctypes interface are working

This commit is contained in:
jaseg 2014-02-16 11:57:21 +01:00
parent 900a9c38e3
commit 9934f27cc1
7 changed files with 90 additions and 17 deletions

View file

@ -65,7 +65,7 @@ framebuffer_t *framebuffer_render_text(char *s, glyphtable_t *glyph_table){
p += inc;
if(c > glyph_table->size){
fprintf(stderr, "Error rendering string: Codepoint 0x%lx out of valid range (0-%d).\n", (long int)c, glyph_table->size);
fprintf(stderr, "Error rendering string: Codepoint 0x%lx out of valid range (0-%ld).\n", (long int)c, glyph_table->size);
goto error;
}