Fix debug output. Spotted by M. Jones.

This commit is contained in:
mmdolze
2013-12-24 17:53:55 +00:00
parent cc23d7c094
commit 9ddf986ef5
+1 -1
View File
@@ -102,7 +102,7 @@ glcd_render_init(Driver *drvthis)
/* load the font face for freetype */
rc = FT_New_Face(rconf->ft_library, font_file, 0, &rconf->ft_normal_font);
if (rc != 0) {
report(RPT_ERR, "s: Creation of font '%s' failed", drvthis->name, font_file);
report(RPT_ERR, "%s: Creation of font '%s' failed", drvthis->name, font_file);
goto err_out;
}