app: another minor cleanup in gimpunifiedtransformtool.c

you missed a spot
This commit is contained in:
Mikael Magnusson 2012-08-23 02:15:15 +02:00
parent 0f89efc8a2
commit 11a9fe33d9
1 changed files with 2 additions and 1 deletions

View File

@ -153,7 +153,8 @@ dotprod (GimpVector2 a,
return a.x * b.x + a.y * b.y;
}
static inline gdouble norm (GimpVector2 a)
static inline gdouble
norm (GimpVector2 a)
{
return sqrt (dotprod (a, a));
}