diff -ur jamin-0.9.0-orig/src/geq.c jamin-0.9.0/src/geq.c --- jamin-0.9.0-orig/src/geq.c 2004-08-05 21:29:29.576383960 +0200 +++ jamin-0.9.0/src/geq.c 2004-08-20 22:56:08.970301536 +0200 @@ -122,7 +122,7 @@ int i, bin; - if (length != BINS / 2 - 1) + if (length < BINS / 2 - 1) { errstr = g_strdup_printf (_("Splined length %d does not match BINS / 2 - 1 (%d)"), @@ -155,7 +155,7 @@ float value; - if (length != BINS / 2 - 1) + if (length < BINS / 2 - 1) { errstr = g_strdup_printf (_("Splined length %d does not match BINS / 2 - 1 (%d)"), length, BINS / 2 - 1);