aboutsummaryrefslogtreecommitdiff
path: root/host/main.c
diff options
context:
space:
mode:
authorjaseg <jaseg@jaseg.net>2014-02-16 11:57:21 +0100
committerjaseg <jaseg@jaseg.net>2014-02-16 11:57:54 +0100
commit9934f27cc16e8a2da43033a1f957761e00db4916 (patch)
tree217e92d44322d5b1c08e835f775e11ef3ffd9910 /host/main.c
parent900a9c38e38e5ecb0b2c69a344665b03f148124b (diff)
downloadmatelight-9934f27cc16e8a2da43033a1f957761e00db4916.tar.gz
matelight-9934f27cc16e8a2da43033a1f957761e00db4916.tar.bz2
matelight-9934f27cc16e8a2da43033a1f957761e00db4916.zip
The fundamentals of the new ctypes interface are working
Diffstat (limited to 'host/main.c')
-rw-r--r--host/main.c2
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;
}