Skip to content

Commit

Permalink
Fixes compile error in XCode when using secure connections
Browse files Browse the repository at this point in the history
  • Loading branch information
aardvarkk committed Mar 5, 2016
1 parent 5b5e58d commit 8fe8788
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DependentExtensions/cat/src/crypt/hash/Skein.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Skein::~Skein()

void Skein::GenerateInitialState(int bits)
{
u64 w[MAX_WORDS] = { getLE64(SCHEMA_VER), getLE64(bits), 0 };
u64 w[MAX_WORDS] = { getLE64(SCHEMA_VER), static_cast<u64>(getLE64(bits)), 0 };

CAT_OBJCLR(State);

Expand Down

0 comments on commit 8fe8788

Please sign in to comment.