diff --git a/ChangeLog b/ChangeLog index a037a09116..e128f43aa7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2008-07-17 Sven Neumann + * app/core/gimpcoords.c (gimp_coords_mix): formatting. + * app/vectors/gimpbezierstroke.c: formatting. 2008-07-17 Sven Neumann diff --git a/app/core/gimpcoords.c b/app/core/gimpcoords.c index 8b8c22bd36..2b23155855 100644 --- a/app/core/gimpcoords.c +++ b/app/core/gimpcoords.c @@ -44,12 +44,12 @@ gimp_coords_mix (const gdouble amul, { if (b) { - ret_val->x = amul * a->x + bmul * b->x ; - ret_val->y = amul * a->y + bmul * b->y ; - ret_val->pressure = amul * a->pressure + bmul * b->pressure ; - ret_val->xtilt = amul * a->xtilt + bmul * b->xtilt ; - ret_val->ytilt = amul * a->ytilt + bmul * b->ytilt ; - ret_val->wheel = amul * a->wheel + bmul * b->wheel ; + ret_val->x = amul * a->x + bmul * b->x; + ret_val->y = amul * a->y + bmul * b->y; + ret_val->pressure = amul * a->pressure + bmul * b->pressure; + ret_val->xtilt = amul * a->xtilt + bmul * b->xtilt; + ret_val->ytilt = amul * a->ytilt + bmul * b->ytilt; + ret_val->wheel = amul * a->wheel + bmul * b->wheel; } else {