X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fopen-type-font.cc;h=2f2e5fdaad3d50b7eb2cc755ef0083243487d596;hb=8f5cd22af76fcb5c77853a5ede8b94ebef97caef;hp=d47d7944e8e2771744715e3fdea771a85e4bda9e;hpb=744614ec4497e540fbaa6ad9bf6e842f4b99442a;p=lilypond.git diff --git a/lily/open-type-font.cc b/lily/open-type-font.cc index d47d7944e8..2f2e5fdaad 100644 --- a/lily/open-type-font.cc +++ b/lily/open-type-font.cc @@ -30,11 +30,11 @@ load_table (char const *tag_str, FT_Face face, FT_ULong *length) { FT_Byte *buffer = (FT_Byte *) malloc (*length); if (buffer == NULL) - error (_f (cannot allocate %lu bytes", *length)); + error (_f ("cannot allocate %lu bytes", *length)); error_code = FT_Load_Sfnt_Table (face, tag, 0, buffer, length); if (error_code) - error (_f (cannot load font table: %s", tag_str)); + error (_f ("cannot load font table: %s", tag_str)); return buffer; }