Add missing brackets. It was committed from wrong tree.

This commit is contained in:
David Xu 2004-08-26 02:41:01 +00:00
parent 1ced550de7
commit 1db81dc074
2 changed files with 2 additions and 2 deletions

View file

@ -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; \
})

View file

@ -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; \
})