aboutsummaryrefslogtreecommitdiffstats
path: root/src/libcoopgamma.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2016-07-19 17:00:32 +0200
committerMattias Andrée <maandree@kth.se>2016-07-19 17:00:32 +0200
commit8376da7dc1debc601d8ef4a392a2f059382e883a (patch)
tree47246f1697f67e94c7d8ff46938edf262b0dbaf3 /src/libcoopgamma.c
parentAdd ref to other manpages that shall be written (diff)
downloadlibcoopgamma-8376da7dc1debc601d8ef4a392a2f059382e883a.tar.gz
libcoopgamma-8376da7dc1debc601d8ef4a392a2f059382e883a.tar.bz2
libcoopgamma-8376da7dc1debc601d8ef4a392a2f059382e883a.tar.xz
m
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'src/libcoopgamma.c')
-rw-r--r--src/libcoopgamma.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcoopgamma.c b/src/libcoopgamma.c
index 1812874..eec012a 100644
--- a/src/libcoopgamma.c
+++ b/src/libcoopgamma.c
@@ -2235,7 +2235,7 @@ int libcoopgamma_get_gamma_recv(libcoopgamma_filter_table_t* restrict table,
goto fail;
table->filters->priority = 0;
table->filters->class = NULL;
- if ((libcoopgamma_ramps_initialise)(&(table->filters->ramps), width) < 0)
+ if (libcoopgamma_ramps_initialise_(&(table->filters->ramps), width) < 0)
goto fail;
memcpy(table->filters->ramps.u8.red, payload, clutsize);
}
@@ -2261,7 +2261,7 @@ int libcoopgamma_get_gamma_recv(libcoopgamma_filter_table_t* restrict table,
off += len;
if (off + clutsize > n)
goto bad;
- if ((libcoopgamma_ramps_initialise)(&(table->filters[i].ramps), width) < 0)
+ if (libcoopgamma_ramps_initialise_(&(table->filters[i].ramps), width) < 0)
goto fail;
memcpy(table->filters->ramps.u8.red, payload + off, clutsize);
off += clutsize;