mirror of
https://github.com/opnsense/src.git
synced 2026-04-27 09:06:49 -04:00
Add a missing inline keyword.
This commit is contained in:
parent
b0d5e90aa9
commit
10fece7726
1 changed files with 2 additions and 1 deletions
|
|
@ -49,7 +49,8 @@ simplelock_lock(struct simplelock *lock)
|
|||
;
|
||||
}
|
||||
|
||||
static void simplelock_unlock(struct simplelock *lock)
|
||||
static inline void
|
||||
simplelock_unlock(struct simplelock *lock)
|
||||
{
|
||||
atomic_store_rel_int(&lock->s_lock, 0);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue