Skip to content
Snippets Groups Projects
Commit 7233a455 authored by Uwe Schulzweida's avatar Uwe Schulzweida
Browse files

a small correction on an assertion which was not guaranteed to fire when it...

a small correction on an assertion which was not guaranteed to fire when it should [patch 3 from Nathanael]
parent 01e1c272
No related branches found
No related tags found
No related merge requests found
......@@ -658,10 +658,10 @@ void reshSetStatus ( cdiResH resH, const resOps * ops, int status )
nspT.idx >= 0 &&
nspT.idx < resHList[nsp].size );
xassert ( resHList[nsp].resources );
listElem = resHList[nsp].resources + nspT.idx;
xassert ( listElem &&
listElem->res.v.ops == ops );
xassert ( listElem->res.v.ops == ops );
listElem->status = status;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment