Merge pull request #90 from imjfckm/fix-OCL-OCF-env

Fix wrong fcn signature in OCF env
This commit is contained in:
Michał Mielewczyk
2019-09-03 09:05:47 +02:00
committed by GitHub

View File

@@ -269,8 +269,9 @@ static inline int env_rwsem_is_locked(env_rwsem *s)
return rwsem_is_locked(&s->sem);
}
static inline void env_rwsem_destroy(env_rwsem *s)
static inline int env_rwsem_destroy(env_rwsem *s)
{
return 0;
}
/* *** COMPLETION *** */