drivers/usbdev/usbmsc.c: Fix build error with DEBUGASSERT

This commit is contained in:
Juha Niskanen 2020-04-15 08:27:20 -06:00 committed by Alan Carvalho de Assis
parent 648a76b3c1
commit c2ecdaecf7

View File

@ -1856,7 +1856,7 @@ void usbmsc_uninitialize(FAR void *handle)
* have no option but to continue with the teardown.
*/
DEBUGASSERT(ret == OK || ret == -ECANCLED);
DEBUGASSERT(ret == OK || ret == -ECANCELED);
}
while (ret < 0);