Fix a fatal typo in a recent change

A typo in:
    commit ae401cecdd
    ("Check return from nxsem_wait_initialize()")
This commit is contained in:
YAMAMOTO Takashi 2020-04-01 18:40:56 +09:00 committed by Abdelatif Guettouche
parent 4dffb8c584
commit e811677747

View File

@ -61,7 +61,7 @@ void inode_release(FAR struct inode *node)
* reference count would be wrong. * reference count would be wrong.
*/ */
DEBUGASSERT(ret = OK || ret == -ECANCELED); DEBUGASSERT(ret == OK || ret == -ECANCELED);
} }
while (ret < 0); while (ret < 0);