summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2011-05-22 15:18:59 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2011-05-22 15:18:59 +0200
commit40278ec12131f07fdc15556511f689455e2b7931 (patch)
treeba57b78c3d6e128c5c94c7e4d6a58be1a8b90612
parentd7c07ecbfd1fe35784b809298db73ac26804085b (diff)
downloadvdr-40278ec12131f07fdc15556511f689455e2b7931.tar.gz
vdr-40278ec12131f07fdc15556511f689455e2b7931.tar.bz2
Added some missing braces
-rw-r--r--osd.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/osd.c b/osd.c
index d4e095a2..e5091aee 100644
--- a/osd.c
+++ b/osd.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: osd.c 2.21 2011/04/17 14:25:07 kls Exp $
+ * $Id: osd.c 2.22 2011/05/22 15:18:59 kls Exp $
*/
#include "osd.h"
@@ -594,9 +594,10 @@ void cBitmap::DrawRectangle(int x1, int y1, int x2, int y2, tColor Color)
x2 = min(x2, width - 1);
y2 = min(y2, height - 1);
tIndex c = Index(Color);
- for (int y = y1; y <= y2; y++)
+ for (int y = y1; y <= y2; y++) {
for (int x = x1; x <= x2; x++)
SetIndex(x, y, c);
+ }
}
}