From f9f771cd01b626be30a85a533ea622bcedd981f5 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 21 Apr 2011 15:53:30 +0000 Subject: converted more mixed tab/space indentations to tabs. only whitespace changes. --- release/plugins/sequence/blur.c | 2 +- release/plugins/sequence/gamma.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'release/plugins') diff --git a/release/plugins/sequence/blur.c b/release/plugins/sequence/blur.c index c23a924ac65..cec3351e976 100644 --- a/release/plugins/sequence/blur.c +++ b/release/plugins/sequence/blur.c @@ -41,7 +41,7 @@ char name[24]= "Blur"; VarStruct varstr[]= { LABEL, "Input: 1 strip", 0.0, 0.0, 0.0, "", - NUMSLI|FLO, "Blur", 0.5, 0.0, 10.0, "Maximum filtersize", + NUMSLI|FLO, "Blur", 0.5, 0.0, 10.0, "Maximum filtersize", NUMSLI|FLO, "Gamma", 1.0, 0.4, 2.0, "Gamma correction", TOG|INT, "Animated", 0.0, 0.0, 1.0, "For (Ipo) animated blur", NUM|INT, "debug", 0.0, 0.0, 2.0, diff --git a/release/plugins/sequence/gamma.c b/release/plugins/sequence/gamma.c index e1380746cea..7ce86fff347 100644 --- a/release/plugins/sequence/gamma.c +++ b/release/plugins/sequence/gamma.c @@ -85,7 +85,7 @@ static void make_gamma_table(float setup, float gain, float gamma, int y; for (y = 0; y < 256; y++) { - float v = 1.0 * y / 255; + float v = 1.0 * y / 255; v += setup; v *= gain; v = pow(v, gamma); -- cgit v1.2.3