Index: uspace/lib/softrend/filter.c
===================================================================
--- uspace/lib/softrend/filter.c	(revision 81b1db8cec0aa9dbafab33ef24b55b230180a3a7)
+++ uspace/lib/softrend/filter.c	(revision cbc534cf92ce35b6ee6f37943d685bdc4b1b70d8)
@@ -106,7 +106,7 @@
 	float weights[4];
 	weights[0] = (1 - x_delta) * (1 - y_delta);
-	weights[1] = (    x_delta) * (1 - y_delta);
-	weights[2] = (1 - x_delta) * (    y_delta);
-	weights[3] = (    x_delta) * (    y_delta);
+	weights[1] = x_delta       * (1 - y_delta);
+	weights[2] = (1 - x_delta) * y_delta;
+	weights[3] = x_delta       * y_delta;
 
 	return blend_pixels(4, weights, pixels);
