Index: courgette/encoded_program.cc |
diff --git a/courgette/encoded_program.cc b/courgette/encoded_program.cc |
index 8fb8c6952448a1d6d6fb03dc509061cf11e0b5ce..b78e7fef93cc9092c81e38c0d1d9af94dc7fac15 100644 |
--- a/courgette/encoded_program.cc |
+++ b/courgette/encoded_program.cc |
@@ -710,7 +710,7 @@ COMPILE_ASSERT(offsetof(RelocBlockPOD, relocs) == 8, reloc_block_header_size); |
class RelocBlock { |
public: |
RelocBlock() { |
- pod.page_rva = ~0; |
+ pod.page_rva = 0xFFFFFFFF; |
tommi (sloooow) - chröme
2014/07/08 07:56:15
I'm curious - does this actually make a difference
Peter Kasting
2014/07/08 19:33:47
~0 is signed (I believe because 0 is signed), whil
|
pod.block_size = 8; |
} |