|
From: <kin...@us...> - 2023-07-10 18:48:55
|
Revision: 7067
http://sourceforge.net/p/teem/code/7067
Author: kindlmann
Date: 2023-07-10 18:48:53 +0000 (Mon, 10 Jul 2023)
Log Message:
-----------
fixing long-standing bug in what was being checked for non-NULL-ity with a hestCB
Modified Paths:
--------------
teem/trunk/src/hest/parseHest.c
Modified: teem/trunk/src/hest/parseHest.c
===================================================================
--- teem/trunk/src/hest/parseHest.c 2023-07-08 15:48:39 UTC (rev 7066)
+++ teem/trunk/src/hest/parseHest.c 2023-07-10 18:48:53 UTC (rev 7067)
@@ -271,7 +271,7 @@
fprintf(stderr, "%s: panic 5\n", me);
return 1;
}
- if (!(opt[op].type)) {
+ if (!(opt[op].CB->type)) {
if (err)
sprintf(err, "%s!!!!!! opt[%d]'s \"type\" is NULL", ME, op);
else
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|