Fix "error: integer constant is too large for ‘long’ type" on PowerMac

pull/258/head
Jeffrey Walton 2016-09-07 12:29:29 -04:00
parent f4c33f6969
commit 8e5663fe23
1 changed files with 1 additions and 1 deletions

View File

@ -1199,7 +1199,7 @@ bool TestSecBlock()
temp &= (block.size() == SIZE*2);
for (size_t i = 0; i < block.size()/2; i++)
temp &= (block[i] == 0xaaaaaaaaaaaaaaaa);
temp &= (block[i] == W64LIT(0xaaaaaaaaaaaaaaaa));
for (size_t i = block.size()/2; i < block.size(); i++)
temp &= (block[i] == 0);