summaryrefslogtreecommitdiffstats
path: root/libass/ass_font.c
diff options
context:
space:
mode:
authoreugeni <eugeni@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-10-25 21:20:28 +0000
committereugeni <eugeni@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-10-25 21:20:28 +0000
commit52cf134a3b65f9964c29bf0f1704e2ffedfd0df1 (patch)
tree1f6356dc43bfdc654ef744586c0b224c147d6beb /libass/ass_font.c
parent96b63566400632340cd7ebec81686591b633a01e (diff)
downloadlibass-52cf134a3b65f9964c29bf0f1704e2ffedfd0df1.tar.bz2
libass-52cf134a3b65f9964c29bf0f1704e2ffedfd0df1.tar.xz
Cosmetics: fix indentation after last commit.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24856 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libass/ass_font.c')
-rw-r--r--libass/ass_font.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/libass/ass_font.c b/libass/ass_font.c
index 3ae6d71..37bec8b 100644
--- a/libass/ass_font.c
+++ b/libass/ass_font.c
@@ -295,12 +295,12 @@ FT_Glyph ass_font_get_glyph(void* fontconfig_priv, ass_font_t* font, uint32_t ch
ch, font->desc.family, font->desc.bold, font->desc.italic);
face_idx = add_face(fontconfig_priv, font, ch);
if (face_idx >= 0) {
- face = font->faces[face_idx];
- index = FT_Get_Char_Index(face, ch);
- if (index == 0) {
- mp_msg(MSGT_ASS, MSGL_ERR, MSGTR_LIBASS_GlyphNotFound,
- ch, font->desc.family, font->desc.bold, font->desc.italic);
- }
+ face = font->faces[face_idx];
+ index = FT_Get_Char_Index(face, ch);
+ if (index == 0) {
+ mp_msg(MSGT_ASS, MSGL_ERR, MSGTR_LIBASS_GlyphNotFound,
+ ch, font->desc.family, font->desc.bold, font->desc.italic);
+ }
}
}
#endif