Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/neutrinolabs/libpainter.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJay Sorg <jay.sorg@gmail.com>2016-08-27 10:36:52 +0300
committerJay Sorg <jay.sorg@gmail.com>2016-08-27 10:36:52 +0300
commite4de79510f056d97c84433713d9587d607c9e33a (patch)
tree34a3b72c9eefe078befb477da7decfe4b3c808a9
parent14a42d5ff79555c9c406d495cacf83340731b3ec (diff)
remove trailing whitespace
-rw-r--r--src/painter.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/painter.c b/src/painter.c
index fd2da5b..e76202f 100644
--- a/src/painter.c
+++ b/src/painter.c
@@ -165,7 +165,7 @@ painter_fill_rect(void *handle, struct painter_bitmap *dst,
dst32 = (int *) bitmap_get_ptr(dst, x, y + jndex);
if (dst32 != NULL)
{
- for (index = 0; index < cx; index++)
+ for (index = 0; index < cx; index++)
{
*(dst32++) = pt->fgcolor;
}
@@ -180,7 +180,7 @@ painter_fill_rect(void *handle, struct painter_bitmap *dst,
dst16 = (short *) bitmap_get_ptr(dst, x, y + jndex);
if (dst16 != NULL)
{
- for (index = 0; index < cx; index++)
+ for (index = 0; index < cx; index++)
{
*(dst16++) = pt->fgcolor;
}