[vlc-commits] text_renderer: Fix syntax error
Boris Egorov
git at videolan.org
Fri Oct 23 13:14:22 CEST 2015
vlc | branch: master | Boris Egorov <egorov at linux.com> | Fri Oct 23 15:42:23 2015 +0600| [f8ab474b225fff5a8279b933d4bf37c48f7e077a] | committer: Jean-Baptiste Kempf
text_renderer: Fix syntax error
Signed-off-by: Boris Egorov <egorov at linux.com>
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=f8ab474b225fff5a8279b933d4bf37c48f7e077a
---
modules/text_renderer/quartztext.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/text_renderer/quartztext.c b/modules/text_renderer/quartztext.c
index 8142155..5e2cefe 100644
--- a/modules/text_renderer/quartztext.c
+++ b/modules/text_renderer/quartztext.c
@@ -260,7 +260,7 @@ static void Destroy(vlc_object_t *p_this)
filter_sys_t *p_sys = p_filter->p_sys;
#ifndef TARGET_OS_IPHONE
if (p_sys->p_fonts) {
- for (int k = 0; k < p_sys->i_fonts; k++) {
+ for (int k = 0; k < p_sys->i_fonts; k++)
ATSFontDeactivate(p_sys->p_fonts[k], NULL, kATSOptionFlagsDefault);
free(p_sys->p_fonts);
More information about the vlc-commits
mailing list