missing semi

This commit is contained in:
David Sidrane 2017-03-13 22:54:13 +00:00
parent d66fd9f965
commit caf8bac7fb

View File

@ -125,7 +125,7 @@ static inline FAR struct semholder_s *sem_allocholder(sem_t *sem)
pholder = NULL;
}
DEBUGASSERT(pholder != NULL)
DEBUGASSERT(pholder != NULL);
return pholder;
}