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
parent c81b858757
commit adc6677c9d
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4

View File

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