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
commit 13c5462c7d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -269,8 +269,9 @@ static inline int env_rwsem_is_locked(env_rwsem *s)
return rwsem_is_locked(&s->sem); 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 *** */ /* *** COMPLETION *** */