summaryrefslogtreecommitdiff
path: root/target/ifarp.c
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhosting.net>2015-11-06 05:38:49 +0100
committerJörg Frings-Fürst <debian@jff-webhosting.net>2015-11-06 05:38:49 +0100
commit9491825ddff7a294d1f49061bae7044e426aeb2e (patch)
tree06e651099f87140ec534ae47fb8ce1ac6ec7976d /target/ifarp.c
parentfa756339d4204bff7f2820067f58214d32780d17 (diff)
Imported Upstream version 1.8.3
Diffstat (limited to 'target/ifarp.c')
-rwxr-xr-x[-rw-r--r--]target/ifarp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/target/ifarp.c b/target/ifarp.c
index 544f316..03fc914 100644..100755
--- a/target/ifarp.c
+++ b/target/ifarp.c
@@ -310,6 +310,7 @@ ifarp_del(ifarp *s) {
/* Constructor */
ifarp *new_ifarp(
+int verb, /* Verbosity */
int di, /* Dimensionality of device space */
double ilimit, /* Ink limit (sum of device coords max) */
int inp, /* Number of points to generate */
@@ -320,7 +321,6 @@ void *od /* context for Perceptual function */
) {
ifarp *s;
int e, i;
- int verb = 1;
#ifdef DEBUG
printf("new_ifarp called with di %d, inp %d, fxno = %d\n",di,inp,fxno);
@@ -855,7 +855,7 @@ char *argv[];
error ("Creation of xcolorant lu object failed");
/* Create the required points */
- s = new_ifarp(di, 1.5, npoints, NULL, 0, sa_percept, (void *)NULL);
+ s = new_ifarp(1, di, 1.5, npoints, NULL, 0, sa_percept, (void *)NULL);
#ifdef DEBUG
/* Dump perceptual map */