diff options
author | Mattias Andrée <maandree@kth.se> | 2016-12-18 19:48:56 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2016-12-18 19:48:56 +0100 |
commit | 0270fcba233754779cbf8c11d2ff22d8ecded556 (patch) | |
tree | bf349f9c08ab736116d609b0cb43d92e2c8d360e /src/cg-negative.c | |
parent | cg-base: Add NO_DEFAULT_PRIORITY (diff) | |
download | cg-tools-0270fcba233754779cbf8c11d2ff22d8ecded556.tar.gz cg-tools-0270fcba233754779cbf8c11d2ff22d8ecded556.tar.bz2 cg-tools-0270fcba233754779cbf8c11d2ff22d8ecded556.tar.xz |
cg-base: add filters_n
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'src/cg-negative.c')
-rw-r--r-- | src/cg-negative.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/cg-negative.c b/src/cg-negative.c index 28b87ea..a16695a 100644 --- a/src/cg-negative.c +++ b/src/cg-negative.c @@ -190,20 +190,20 @@ int start(void) size_t i, j; if (xflag) - for (i = 0; i < crtcs_n; i++) + for (i = 0; i < filters_n; i++) crtc_updates[i].filter.lifespan = LIBCOOPGAMMA_REMOVE; else if (dflag) - for (i = 0; i < crtcs_n; i++) + for (i = 0; i < filters_n; i++) crtc_updates[i].filter.lifespan = LIBCOOPGAMMA_UNTIL_DEATH; else - for (i = 0; i < crtcs_n; i++) + for (i = 0; i < filters_n; i++) crtc_updates[i].filter.lifespan = LIBCOOPGAMMA_UNTIL_REMOVAL; if (!xflag) if ((r = make_slaves()) < 0) return r; - for (i = 0, r = 1; i < crtcs_n; i++) + for (i = 0, r = 1; i < filters_n; i++) { if (!(crtc_updates[i].master) || !(crtc_info[i].supported)) continue; |