summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorphintuka <phintuka>2010-06-01 12:08:30 +0000
committerphintuka <phintuka>2010-06-01 12:08:30 +0000
commit89019750c5d5bcf41d6d3a7bb069a37b35d17731 (patch)
tree8846ef19198b3af7d85ca700fbc1d8b1f598e5a1
parent9f73ec5c7ea84660ee7ce77c9bde6048f879c502 (diff)
downloadxineliboutput-89019750c5d5bcf41d6d3a7bb069a37b35d17731.tar.gz
xineliboutput-89019750c5d5bcf41d6d3a7bb069a37b35d17731.tar.bz2
Fixed missing {
(Thanks to Dirk Brenken)
-rw-r--r--xine/vo_osdscaler.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/xine/vo_osdscaler.c b/xine/vo_osdscaler.c
index d257c025..542ffdd5 100644
--- a/xine/vo_osdscaler.c
+++ b/xine/vo_osdscaler.c
@@ -4,7 +4,7 @@
* See the main source file 'xineliboutput.c' for copyright information and
* how to reach the author.
*
- * $Id: vo_osdscaler.c,v 1.11 2010-05-30 20:48:22 phintuka Exp $
+ * $Id: vo_osdscaler.c,v 1.12 2010-06-01 12:08:30 phintuka Exp $
*
*/
@@ -258,7 +258,7 @@ static int check_for_scaling(osdscaler_hook_t *this, vo_frame_t *frame, vo_overl
extent_width = data->extent_width;
extent_height = data->extent_height;
- if (data->scaling < 1)
+ if (data->scaling < 1) {
return 0;
}