aboutsummaryrefslogtreecommitdiff
path: root/host/font.c
diff options
context:
space:
mode:
Diffstat (limited to 'host/font.c')
-rw-r--r--host/font.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/host/font.c b/host/font.c
index 85882ad..ee9adb3 100644
--- a/host/font.c
+++ b/host/font.c
@@ -79,7 +79,7 @@ void free_glyphtable(glyphtable_t *glyph_table){
glyphtable_t *read_bdf(FILE *f){
glyphtable_t *glyph_table = malloc(sizeof(glyphtable_t));
if(!glyph_table){
- printf("Cannot allocate glyph table\n");
+ fprintf(stderr, "Cannot allocate glyph table\n");
goto error;
}
memset(glyph_table, 0, sizeof(*glyph_table));