|
From: <kin...@us...> - 2023-07-16 02:21:59
|
Revision: 7116
http://sourceforge.net/p/teem/code/7116
Author: kindlmann
Date: 2023-07-16 02:21:56 +0000 (Sun, 16 Jul 2023)
Log Message:
-----------
WEIRD: how was this working before? if the min number of parms was 1 instead of 0. It needs to be zero
Modified Paths:
--------------
teem/trunk/src/unrrdu/basinfo.c
Modified: teem/trunk/src/unrrdu/basinfo.c
===================================================================
--- teem/trunk/src/unrrdu/basinfo.c 2023-07-15 21:57:26 UTC (rev 7115)
+++ teem/trunk/src/unrrdu/basinfo.c 2023-07-16 02:21:56 UTC (rev 7116)
@@ -61,7 +61,7 @@
"many coefficients are needed for the chosen space). Quoting the "
"vector is needed to stop interpretation from the shell");
/* HEY: copy and paste from unrrdu/make.c */
- hestOptAdd_Nv_String(&opt, "kv,keyvalue", "key/val", 1, -1, &kvp, "",
+ hestOptAdd_Nv_String(&opt, "kv,keyvalue", "key/val", 0, -1, &kvp, "",
"key/value string pairs to be stored in nrrd. Each key/value "
"pair must be a single string (put it in \"\"s "
"if the key or the value contain spaces). The format of each "
@@ -68,7 +68,7 @@
"pair is \"<key>:=<value>\", with no spaces before or after "
"\":=\".",
&kvpLen);
- hestOptAdd_Nv_String(&opt, "dk,delkey", "key", 1, -1, &dkey, "",
+ hestOptAdd_Nv_String(&opt, "dk,delkey", "key", 0, -1, &dkey, "",
"keys to be deleted (erased) from key/value pairs", &dkeyLen);
hestOptAdd_Flag(&opt, "xkv,nixkeyvalue", &nixkvp, "nix (clear) all key/value pairs");
cIdx = hestOptAdd_1_String(
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|