mirror of
https://github.com/apache/nuttx.git
synced 2026-05-22 22:20:01 +08:00
Fix a fatal typo in a recent change
A typo in:
commit ae401cecdd
("Check return from nxsem_wait_initialize()")
This commit is contained in:
committed by
Abdelatif Guettouche
parent
4dffb8c584
commit
e811677747
@@ -61,7 +61,7 @@ void inode_release(FAR struct inode *node)
|
||||
* reference count would be wrong.
|
||||
*/
|
||||
|
||||
DEBUGASSERT(ret = OK || ret == -ECANCELED);
|
||||
DEBUGASSERT(ret == OK || ret == -ECANCELED);
|
||||
}
|
||||
while (ret < 0);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user