https://git.reactos.org/?p=reactos.git;a=commitdiff;h=698e1a3782daf4479d38a…
commit 698e1a3782daf4479d38a4f84ad7d5df7f86cb40
Author: Hervé Poussineau <hpoussin(a)reactos.org>
AuthorDate: Tue Jan 14 23:20:10 2020 +0100
Commit: Hervé Poussineau <hpoussin(a)reactos.org>
CommitDate: Wed Jan 22 20:57:04 2020 +0100
[SDK] Use HEX macro, like elsewhere in the file
---
sdk/lib/crt/math/amd64/sqrt.S | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sdk/lib/crt/math/amd64/sqrt.S b/sdk/lib/crt/math/amd64/sqrt.S
index 5238feebc98..8093ab27920 100644
--- a/sdk/lib/crt/math/amd64/sqrt.S
+++ b/sdk/lib/crt/math/amd64/sqrt.S
@@ -30,7 +30,7 @@ sqrt:
/* x is positive, now check if it is NaN by checking if the unsigned
integer value is larger than the highest valid positive value. */
- mov rcx, 7FF0000000000000h
+ mov rcx, HEX(7FF0000000000000)
cmp rax, rcx
ja short x_is_nan