summaryrefslogtreecommitdiff
path: root/font.c
diff options
context:
space:
mode:
authorVille Skyttä <ville.skytta@iki.fi>2009-07-13 01:17:33 +0300
committerVille Skyttä <ville.skytta@iki.fi>2009-07-13 01:17:33 +0300
commit8054fd6d91422f8ff859e2696b10150bc02c998b (patch)
treecc5edc80aa6aa3564ca0f5b7f06140b259fc04de /font.c
parent41d45011c24740abfcaae9ecf0ea3f1906c6f29e (diff)
downloadvdr-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/font.c b/font.c
index 0792b2e..f1cff09 100644
--- a/font.c
+++ b/font.c
@@ -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;
}