Code formatting
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
Rafal Kupiec 2023-01-23 20:04:32 +01:00
부모 c81b858757
커밋 adc6677c9d
로그인 계정: belliash
GPG 키 ID: 4E829243E0CFE6B4

파일 보기

@ -335,7 +335,9 @@ HlReadGSQuadWord(ULONG Offset)
ULONGLONG Value;
/* Read quadword from GS segment */
asm volatile("movq %%gs:%a[Offset], %q[Value]" : [Value] "=r" (Value) : [Offset] "ir" (Offset));
asm volatile("movq %%gs:%a[Offset], %q[Value]"
: [Value] "=r" (Value)
: [Offset] "ir" (Offset));
return Value;
}