File scarse-fix.patch of Package scarse
--- scarse-0.4-alpha/src/ipb.c.xx 2006-12-19 10:54:15.000000000 +0100 +++ scarse-0.4-alpha/src/ipb.c 2006-12-19 10:56:19.000000000 +0100 @@ -1154,7 +1154,8 @@ char *s = strchr(optarg, ':'); if (!s) usage(); - x = strtod(++s, &s); + s++; + x = strtod(s, &s); if (*s != ',') usage(); y = strtod(++s, NULL);