diff options
author | Ville Skyttä <ville.skytta@iki.fi> | 2009-07-13 01:17:33 +0300 |
---|---|---|
committer | Ville Skyttä <ville.skytta@iki.fi> | 2009-07-13 01:17:33 +0300 |
commit | 8054fd6d91422f8ff859e2696b10150bc02c998b (patch) | |
tree | cc5edc80aa6aa3564ca0f5b7f06140b259fc04de /font.c | |
parent | 41d45011c24740abfcaae9ecf0ea3f1906c6f29e (diff) | |
download | vdr-plugin-text2skin-8054fd6d91422f8ff859e2696b10150bc02c998b.tar.gz vdr-plugin-text2skin-8054fd6d91422f8ff859e2696b10150bc02c998b.tar.bz2 |
Update syntax in font load error message.
Diffstat (limited to 'font.c')
-rw-r--r-- | font.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -72,7 +72,7 @@ const cFont *cText2SkinFont::Load(const string &Name, int Size) if (mFontCache.Load(Name, cachename, Size)) res = mFontCache.GetFont(cachename); else - esyslog("ERROR: Text2Skin: Couldn't load font %s:%d", Name.c_str(), Size); + esyslog("ERROR: Text2Skin: Couldn't load font %s@%d", Name.c_str(), Size); free(cachename); return res; } |