Make dbLinkIs{Constant|Volatile}() return only true/false

This commit is contained in:
Andrew Johnson
2017-04-25 20:37:09 -05:00
parent da94b7a2e4
commit c71afb631c
4 changed files with 12 additions and 17 deletions
+1 -1
View File
@@ -466,7 +466,7 @@ static int lnkCalc_isConn(const struct link *plink)
for (i = 0; i < clink->nArgs; i++) {
struct link *child = &clink->inp[i];
if (dbLinkIsVolatile(child) > 0 &&
if (dbLinkIsVolatile(child) &&
!dbIsLinkConnected(child))
connected = 0;
}