|
From: <kin...@us...> - 2023-07-13 21:46:20
|
Revision: 7091
http://sourceforge.net/p/teem/code/7091
Author: kindlmann
Date: 2023-07-13 21:46:17 +0000 (Thu, 13 Jul 2023)
Log Message:
-----------
oops left in a debugging printf
Modified Paths:
--------------
teem/trunk/src/hest/parseHest.c
Modified: teem/trunk/src/hest/parseHest.c
===================================================================
--- teem/trunk/src/hest/parseHest.c 2023-07-13 21:27:52 UTC (rev 7090)
+++ teem/trunk/src/hest/parseHest.c 2023-07-13 21:46:17 UTC (rev 7091)
@@ -873,7 +873,9 @@
/* if not using the default, we're done with this option */
if (!udflt[op]) continue;
prms[op] = airStrdup(opt[op].dflt);
- fprintf(stderr, "!%s: prms[%d] = |%s|\n", me, op, prms[op]);
+ if (parm->verbosity) {
+ printf("%s: prms[%d] = |%s|\n", me, op, prms[op]);
+ }
if (prms[op]) {
airMopAdd(mop, prms[op], airFree, airMopAlways);
airOneLinify(prms[op]);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|