diff options
Diffstat (limited to 'host/main.c')
-rw-r--r-- | host/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/main.c b/host/main.c index 0d5af6e..c6086e1 100644 --- a/host/main.c +++ b/host/main.c @@ -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; } |