|
From: <kin...@us...> - 2025-09-29 07:58:46
|
Revision: 7518
http://sourceforge.net/p/teem/code/7518
Author: kindlmann
Date: 2025-09-29 07:58:41 +0000 (Mon, 29 Sep 2025)
Log Message:
-----------
hest has removed the experimental hestOptFree_vp, so now using traditional albeit clunky (airMopper)hestOptFree
Modified Paths:
--------------
teem/trunk/src/unrrdu/1op.c
teem/trunk/src/unrrdu/2op.c
teem/trunk/src/unrrdu/3op.c
teem/trunk/src/unrrdu/aabplot.c
teem/trunk/src/unrrdu/acrop.c
teem/trunk/src/unrrdu/affine.c
teem/trunk/src/unrrdu/axdelete.c
teem/trunk/src/unrrdu/axinfo.c
teem/trunk/src/unrrdu/axinsert.c
teem/trunk/src/unrrdu/axmerge.c
teem/trunk/src/unrrdu/axsplit.c
teem/trunk/src/unrrdu/basinfo.c
teem/trunk/src/unrrdu/block.c
teem/trunk/src/unrrdu/ccadj.c
teem/trunk/src/unrrdu/ccfind.c
teem/trunk/src/unrrdu/ccmerge.c
teem/trunk/src/unrrdu/ccsettle.c
teem/trunk/src/unrrdu/cksum.c
teem/trunk/src/unrrdu/cmedian.c
teem/trunk/src/unrrdu/convert.c
teem/trunk/src/unrrdu/crop.c
teem/trunk/src/unrrdu/data.c
teem/trunk/src/unrrdu/dering.c
teem/trunk/src/unrrdu/dhisto.c
teem/trunk/src/unrrdu/dice.c
teem/trunk/src/unrrdu/diff.c
teem/trunk/src/unrrdu/dist.c
teem/trunk/src/unrrdu/dnorm.c
teem/trunk/src/unrrdu/fft.c
teem/trunk/src/unrrdu/flip.c
teem/trunk/src/unrrdu/gamma.c
teem/trunk/src/unrrdu/grid.c
teem/trunk/src/unrrdu/hack.c
teem/trunk/src/unrrdu/head.c
teem/trunk/src/unrrdu/heq.c
teem/trunk/src/unrrdu/histax.c
teem/trunk/src/unrrdu/histo.c
teem/trunk/src/unrrdu/i2w.c
teem/trunk/src/unrrdu/ilk.c
teem/trunk/src/unrrdu/imap.c
teem/trunk/src/unrrdu/inset.c
teem/trunk/src/unrrdu/jhisto.c
teem/trunk/src/unrrdu/join.c
teem/trunk/src/unrrdu/lut.c
teem/trunk/src/unrrdu/lut2.c
teem/trunk/src/unrrdu/make.c
teem/trunk/src/unrrdu/minmax.c
teem/trunk/src/unrrdu/mlut.c
teem/trunk/src/unrrdu/mrmap.c
teem/trunk/src/unrrdu/pad.c
teem/trunk/src/unrrdu/permute.c
teem/trunk/src/unrrdu/project.c
teem/trunk/src/unrrdu/quantize.c
teem/trunk/src/unrrdu/resample.c
teem/trunk/src/unrrdu/reshape.c
teem/trunk/src/unrrdu/rmap.c
teem/trunk/src/unrrdu/save.c
teem/trunk/src/unrrdu/shuffle.c
teem/trunk/src/unrrdu/slice.c
teem/trunk/src/unrrdu/splice.c
teem/trunk/src/unrrdu/sselect.c
teem/trunk/src/unrrdu/subst.c
teem/trunk/src/unrrdu/swap.c
teem/trunk/src/unrrdu/tile.c
teem/trunk/src/unrrdu/unblock.c
teem/trunk/src/unrrdu/uncmt.c
teem/trunk/src/unrrdu/undos.c
teem/trunk/src/unrrdu/unorient.c
teem/trunk/src/unrrdu/unquantize.c
teem/trunk/src/unrrdu/untile.c
teem/trunk/src/unrrdu/vidicon.c
teem/trunk/src/unrrdu/w2i.c
Modified: teem/trunk/src/unrrdu/1op.c
===================================================================
--- teem/trunk/src/unrrdu/1op.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/1op.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -72,7 +72,7 @@
OPT_ADD_NOUT(out, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_1opInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/2op.c
===================================================================
--- teem/trunk/src/unrrdu/2op.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/2op.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -87,7 +87,7 @@
OPT_ADD_NOUT(out, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_2opInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/3op.c
===================================================================
--- teem/trunk/src/unrrdu/3op.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/3op.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -86,7 +86,7 @@
OPT_ADD_NOUT(out, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_3opInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/aabplot.c
===================================================================
--- teem/trunk/src/unrrdu/aabplot.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/aabplot.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -52,7 +52,7 @@
nrrdHestNrrdNoTTY);
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_aabplotInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/acrop.c
===================================================================
--- teem/trunk/src/unrrdu/acrop.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/acrop.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -77,7 +77,7 @@
OPT_ADD_NOUT(out, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_acropInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/affine.c
===================================================================
--- teem/trunk/src/unrrdu/affine.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/affine.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -61,7 +61,7 @@
OPT_ADD_NOUT(out, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_affineInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/axdelete.c
===================================================================
--- teem/trunk/src/unrrdu/axdelete.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/axdelete.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -47,7 +47,7 @@
OPT_ADD_NOUT(out, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_axdeleteInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/axinfo.c
===================================================================
--- teem/trunk/src/unrrdu/axinfo.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/axinfo.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -69,7 +69,7 @@
OPT_ADD_NOUT(out, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_axinfoInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/axinsert.c
===================================================================
--- teem/trunk/src/unrrdu/axinsert.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/axinsert.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -63,7 +63,7 @@
OPT_ADD_NOUT(out, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_axinsertInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/axmerge.c
===================================================================
--- teem/trunk/src/unrrdu/axmerge.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/axmerge.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -48,7 +48,7 @@
OPT_ADD_NOUT(out, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_axmergeInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/axsplit.c
===================================================================
--- teem/trunk/src/unrrdu/axsplit.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/axsplit.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -45,7 +45,7 @@
OPT_ADD_NOUT(out, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_axsplitInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/basinfo.c
===================================================================
--- teem/trunk/src/unrrdu/basinfo.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/basinfo.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -77,7 +77,7 @@
OPT_ADD_NOUT(out, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
nio = nrrdIoStateNew();
airMopAdd(mop, nio, (airMopper)nrrdIoStateNix, airMopAlways);
Modified: teem/trunk/src/unrrdu/block.c
===================================================================
--- teem/trunk/src/unrrdu/block.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/block.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -46,7 +46,7 @@
OPT_ADD_NOUT(out, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_blockInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/ccadj.c
===================================================================
--- teem/trunk/src/unrrdu/ccadj.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/ccadj.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -44,7 +44,7 @@
OPT_ADD_NOUT(out, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_ccadjInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/ccfind.c
===================================================================
--- teem/trunk/src/unrrdu/ccfind.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/ccfind.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -55,7 +55,7 @@
OPT_ADD_NOUT(out, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_ccfindInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/ccmerge.c
===================================================================
--- teem/trunk/src/unrrdu/ccmerge.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/ccmerge.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -71,7 +71,7 @@
OPT_ADD_NOUT(out, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_ccmergeInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/ccsettle.c
===================================================================
--- teem/trunk/src/unrrdu/ccsettle.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/ccsettle.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -41,7 +41,7 @@
"from new (settled) values to old values, in the form of a "
"1-D lookup table");
OPT_ADD_NOUT(out, "output nrrd");
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_ccsettleInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/cksum.c
===================================================================
--- teem/trunk/src/unrrdu/cksum.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/cksum.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -83,7 +83,7 @@
"endianness");
hestOptAdd_Nv_String(&opt, NULL, "nin1", 1, -1, &inS, "-",
"input nrrd(s). By default tries to read from stdin", &ninLen);
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_cksumInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/cmedian.c
===================================================================
--- teem/trunk/src/unrrdu/cmedian.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/cmedian.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -78,7 +78,7 @@
OPT_ADD_NOUT(out, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_cmedianInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/convert.c
===================================================================
--- teem/trunk/src/unrrdu/convert.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/convert.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -48,7 +48,7 @@
OPT_ADD_NOUT(out, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_convertInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/crop.c
===================================================================
--- teem/trunk/src/unrrdu/crop.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/crop.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -64,7 +64,7 @@
OPT_ADD_NOUT(out, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_cropInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/data.c
===================================================================
--- teem/trunk/src/unrrdu/data.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/data.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -48,7 +48,7 @@
mop = airMopNew();
hestOptAdd_1_String(&opt, NULL, "nin", &inS, NULL, "input nrrd");
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_dataInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/dering.c
===================================================================
--- teem/trunk/src/unrrdu/dering.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/dering.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -78,7 +78,7 @@
OPT_ADD_NOUT(out, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_deringInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/dhisto.c
===================================================================
--- teem/trunk/src/unrrdu/dhisto.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/dhisto.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -53,7 +53,7 @@
OPT_ADD_NOUT(out, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_dhistoInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/dice.c
===================================================================
--- teem/trunk/src/unrrdu/dice.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/dice.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -62,7 +62,7 @@
"with \"/\".");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_diceInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/diff.c
===================================================================
--- teem/trunk/src/unrrdu/diff.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/diff.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -55,7 +55,7 @@
"there was a significant difference (as if it's an error)");
hestOptAdd_Flag(&opt, "od,onlydata", &onlyData,
"Compare data values only, excluding array meta-data");
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_diffInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/dist.c
===================================================================
--- teem/trunk/src/unrrdu/dist.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/dist.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -60,7 +60,7 @@
OPT_ADD_NOUT(out, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_distInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/dnorm.c
===================================================================
--- teem/trunk/src/unrrdu/dnorm.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/dnorm.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -68,7 +68,7 @@
OPT_ADD_NOUT(outS, "output filename");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_dnormInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/fft.c
===================================================================
--- teem/trunk/src/unrrdu/fft.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/fft.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -108,7 +108,7 @@
OPT_ADD_NOUT(out, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
if (nrrdFFTWEnabled) {
USAGE_OR_PARSE(_unrrdu_fftInfoL_yes);
Modified: teem/trunk/src/unrrdu/flip.c
===================================================================
--- teem/trunk/src/unrrdu/flip.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/flip.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -38,7 +38,7 @@
OPT_ADD_NOUT(out, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_flipInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/gamma.c
===================================================================
--- teem/trunk/src/unrrdu/gamma.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/gamma.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -58,7 +58,7 @@
OPT_ADD_NOUT(out, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_gammaInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/grid.c
===================================================================
--- teem/trunk/src/unrrdu/grid.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/grid.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -165,7 +165,7 @@
OPT_ADD_NOUT(outS, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_gridInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/hack.c
===================================================================
--- teem/trunk/src/unrrdu/hack.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/hack.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -42,7 +42,7 @@
OPT_ADD_NOUT(out, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_hackInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/head.c
===================================================================
--- teem/trunk/src/unrrdu/head.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/head.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -96,7 +96,7 @@
hparm->noArgsIsNoProblem = AIR_TRUE;
hestOptAdd_Nv_String(&opt, NULL, "nin1", 1, -1, &inS, "-",
"input nrrd(s). By default tries to read from stdin", &ninLen);
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_headInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/heq.c
===================================================================
--- teem/trunk/src/unrrdu/heq.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/heq.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -67,7 +67,7 @@
OPT_ADD_NOUT(out, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_heqInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/histax.c
===================================================================
--- teem/trunk/src/unrrdu/histax.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/histax.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -74,7 +74,7 @@
OPT_ADD_NOUT(out, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_histaxInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/histo.c
===================================================================
--- teem/trunk/src/unrrdu/histo.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/histo.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -75,7 +75,7 @@
OPT_ADD_NOUT(out, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_histoInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/i2w.c
===================================================================
--- teem/trunk/src/unrrdu/i2w.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/i2w.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -56,7 +56,7 @@
"number of intervals into which position has been quantized");
hestOptAdd_1_Double(&opt, NULL, "index", &indx, NULL,
"the input index position, to be converted to world");
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_i2wInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/ilk.c
===================================================================
--- teem/trunk/src/unrrdu/ilk.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/ilk.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -309,7 +309,7 @@
OPT_ADD_NOUT(outS, "output image");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_ilkInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/imap.c
===================================================================
--- teem/trunk/src/unrrdu/imap.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/imap.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -75,7 +75,7 @@
OPT_ADD_NOUT(out, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_imapInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/inset.c
===================================================================
--- teem/trunk/src/unrrdu/inset.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/inset.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -50,7 +50,7 @@
OPT_ADD_NOUT(out, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_insetInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/jhisto.c
===================================================================
--- teem/trunk/src/unrrdu/jhisto.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/jhisto.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -74,7 +74,7 @@
OPT_ADD_NOUT(out, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_jhistoInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/join.c
===================================================================
--- teem/trunk/src/unrrdu/join.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/join.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -68,7 +68,7 @@
OPT_ADD_NOUT(out, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_joinInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/lut.c
===================================================================
--- teem/trunk/src/unrrdu/lut.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/lut.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -71,7 +71,7 @@
OPT_ADD_NOUT(out, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_lutInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/lut2.c
===================================================================
--- teem/trunk/src/unrrdu/lut2.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/lut2.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -72,7 +72,7 @@
OPT_ADD_NOUT(out, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_lut2InfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/make.c
===================================================================
--- teem/trunk/src/unrrdu/make.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/make.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -237,7 +237,7 @@
"this option allows you to explicitly name the data file, "
"instead of (by default, not using this option) having it be "
"the same filename base as the header file.");
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
// Gone in TeemV2: airStrtokQuoting = AIR_TRUE;
/* hparm->verbosity = 3; / * HEY JUST FOR DEBUGGING */
Modified: teem/trunk/src/unrrdu/minmax.c
===================================================================
--- teem/trunk/src/unrrdu/minmax.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/minmax.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -110,7 +110,7 @@
"only if there were non-existent values. If there are multiple inputs, "
"the input filename is printed first on the per-input single line.");
hestOptAdd_Nv_String(&opt, NULL, "nin1", 1, -1, &inS, "-", "input nrrd(s)", &ninLen);
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_minmaxInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/mlut.c
===================================================================
--- teem/trunk/src/unrrdu/mlut.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/mlut.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -74,7 +74,7 @@
OPT_ADD_NOUT(out, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_mlutInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/mrmap.c
===================================================================
--- teem/trunk/src/unrrdu/mrmap.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/mrmap.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -78,7 +78,7 @@
OPT_ADD_NOUT(out, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_mrmapInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/pad.c
===================================================================
--- teem/trunk/src/unrrdu/pad.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/pad.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -61,7 +61,7 @@
OPT_ADD_NOUT(out, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_padInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/permute.c
===================================================================
--- teem/trunk/src/unrrdu/permute.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/permute.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -42,7 +42,7 @@
OPT_ADD_NOUT(out, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_permuteInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/project.c
===================================================================
--- teem/trunk/src/unrrdu/project.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/project.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -63,7 +63,7 @@
"has to match number of axes specified.",
&outLen);
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_projectInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/quantize.c
===================================================================
--- teem/trunk/src/unrrdu/quantize.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/quantize.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -110,7 +110,7 @@
OPT_ADD_NOUT(out, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_quantizeInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/resample.c
===================================================================
--- teem/trunk/src/unrrdu/resample.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/resample.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -181,7 +181,7 @@
OPT_ADD_NIN(nin, "input nrrd");
OPT_ADD_NOUT(out, "output nrrd");
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_resampleInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/reshape.c
===================================================================
--- teem/trunk/src/unrrdu/reshape.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/reshape.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -44,7 +44,7 @@
OPT_ADD_NOUT(out, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_reshapeInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/rmap.c
===================================================================
--- teem/trunk/src/unrrdu/rmap.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/rmap.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -82,7 +82,7 @@
OPT_ADD_NOUT(out, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_rmapInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/save.c
===================================================================
--- teem/trunk/src/unrrdu/save.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/save.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -96,7 +96,7 @@
"instead of (by default, not using this option) having it be "
"the same filename base as the header file.");
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_saveInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/shuffle.c
===================================================================
--- teem/trunk/src/unrrdu/shuffle.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/shuffle.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -54,7 +54,7 @@
OPT_ADD_NOUT(out, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_shuffleInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/slice.c
===================================================================
--- teem/trunk/src/unrrdu/slice.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/slice.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -60,7 +60,7 @@
OPT_ADD_NOUT(out, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_sliceInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/splice.c
===================================================================
--- teem/trunk/src/unrrdu/splice.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/splice.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -51,7 +51,7 @@
OPT_ADD_NOUT(out, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_spliceInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/sselect.c
===================================================================
--- teem/trunk/src/unrrdu/sselect.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/sselect.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -50,7 +50,7 @@
"Use \"x\" to say that no output is desired.");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_sselectInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/subst.c
===================================================================
--- teem/trunk/src/unrrdu/subst.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/subst.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -44,7 +44,7 @@
OPT_ADD_NOUT(out, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_substInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/swap.c
===================================================================
--- teem/trunk/src/unrrdu/swap.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/swap.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -39,7 +39,7 @@
OPT_ADD_NOUT(out, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_swapInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/tile.c
===================================================================
--- teem/trunk/src/unrrdu/tile.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/tile.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -50,7 +50,7 @@
OPT_ADD_NOUT(out, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_tileInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/unblock.c
===================================================================
--- teem/trunk/src/unrrdu/unblock.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/unblock.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -44,7 +44,7 @@
OPT_ADD_NOUT(out, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_unblockInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/uncmt.c
===================================================================
--- teem/trunk/src/unrrdu/uncmt.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/uncmt.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -372,7 +372,7 @@
"Single output filename; use \"-\" for stdout");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_uncmtInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/undos.c
===================================================================
--- teem/trunk/src/unrrdu/undos.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/undos.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -284,7 +284,7 @@
&lenName);
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_undosInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/unorient.c
===================================================================
--- teem/trunk/src/unrrdu/unorient.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/unorient.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -54,7 +54,7 @@
OPT_ADD_NOUT(out, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_unorientInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/unquantize.c
===================================================================
--- teem/trunk/src/unrrdu/unquantize.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/unquantize.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -59,7 +59,7 @@
OPT_ADD_NOUT(out, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_unquantizeInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/untile.c
===================================================================
--- teem/trunk/src/unrrdu/untile.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/untile.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -53,7 +53,7 @@
OPT_ADD_NOUT(out, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_untileInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
Modified: teem/trunk/src/unrrdu/vidicon.c
===================================================================
--- teem/trunk/src/unrrdu/vidicon.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/vidicon.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -72,7 +72,7 @@
hestOptAdd_1_String(&opt, "o", "output", &out, NULL, "output nrrd");
mop = airMopNew();
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_vidiconInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
ntmp = nrrdNew();
Modified: teem/trunk/src/unrrdu/w2i.c
===================================================================
--- teem/trunk/src/unrrdu/w2i.c 2025-09-29 06:27:50 UTC (rev 7517)
+++ teem/trunk/src/unrrdu/w2i.c 2025-09-29 07:58:41 UTC (rev 7518)
@@ -56,7 +56,7 @@
"number of intervals into which position has been quantized");
hestOptAdd_1_Double(&opt, NULL, "world", &pos, NULL,
"the input world position, to be converted to index");
- airMopAdd(mop, opt, hestOptFree_vp, airMopAlways);
+ airMopAdd(mop, opt, (airMopper)hestOptFree, airMopAlways);
USAGE_OR_PARSE(_unrrdu_w2iInfoL);
airMopAdd(mop, opt, (airMopper)hestParseFree, airMopAlways);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|