mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Add missing brackets. It was committed from wrong tree.
This commit is contained in:
parent
1ced550de7
commit
1db81dc074
2 changed files with 2 additions and 2 deletions
|
|
@ -89,7 +89,7 @@ struct tcb {
|
|||
__asm __volatile("movl %%gs:%1, %0" \
|
||||
: "=r" (__i) \
|
||||
: "m" (*(u_int *)(__kcb_offset(name)))); \
|
||||
__result = __kcb_type(name)__i; \
|
||||
__result = (__kcb_type(name))__i; \
|
||||
\
|
||||
__result; \
|
||||
})
|
||||
|
|
|
|||
|
|
@ -89,7 +89,7 @@ struct tcb {
|
|||
__asm __volatile("movl %%gs:%1, %0" \
|
||||
: "=r" (__i) \
|
||||
: "m" (*(u_int *)(__kcb_offset(name)))); \
|
||||
__result = __kcb_type(name)__i; \
|
||||
__result = (__kcb_type(name))__i; \
|
||||
\
|
||||
__result; \
|
||||
})
|
||||
|
|
|
|||
Loading…
Reference in a new issue