summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-02-17 02:08:50 +0100
committerMattias Andrée <maandree@operamail.com>2014-02-17 02:08:50 +0100
commit9955fa6de7c7634e5c31bbac2177bbb2de5bf9ad (patch)
tree1daa48c65115cc87749568edbaea6d5bd3aca88c /src
parentfix minor bufs + add reset function (diff)
downloadblueshift-9955fa6de7c7634e5c31bbac2177bbb2de5bf9ad.tar.gz
blueshift-9955fa6de7c7634e5c31bbac2177bbb2de5bf9ad.tar.bz2
blueshift-9955fa6de7c7634e5c31bbac2177bbb2de5bf9ad.tar.xz
whitespace
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src')
-rw-r--r--src/blueshift_randr.pyx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/blueshift_randr.pyx b/src/blueshift_randr.pyx
index 8d2909a..a289c83 100644
--- a/src/blueshift_randr.pyx
+++ b/src/blueshift_randr.pyx
@@ -57,7 +57,7 @@ def randr_apply(unsigned long long use_crtcs, r_curve, g_curve, b_curve):
raise MemoryError()
for i in range(256):
r[i] = r_curve[i] & 0xFFFF
- g[i] = g_curve[i] & 0xFFFF
+ g[i] = g_curve[i] & 0xFFFF
b[i] = b_curve[i] & 0xFFFF
rc = blueshift_randr_apply(use_crtcs, r, g, b)
free(r)