diff options
author | manuroe <manu@matrix.org> | 2016-11-14 17:06:34 +0100 |
---|---|---|
committer | manuroe <manu@matrix.org> | 2016-11-14 17:06:34 +0100 |
commit | aa70c8afbccdccd289a69fb513dd3664aa8e3fc7 (patch) | |
tree | 668edbaeebb3ce4e2dd00361d3e12f614ce7c01a /xcode | |
parent | bc697bf5e2ddbad947aec65533d41514592ca093 (diff) |
OLMKit: Fix warning in OLMUtility
Diffstat (limited to 'xcode')
-rw-r--r-- | xcode/OLMKit/OLMUtility.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xcode/OLMKit/OLMUtility.m b/xcode/OLMKit/OLMUtility.m index 3c6ce6e..f9d47c0 100644 --- a/xcode/OLMKit/OLMUtility.m +++ b/xcode/OLMKit/OLMUtility.m @@ -79,7 +79,7 @@ NSString *const OLMErrorDomain = @"org.matrix.olm"; size_t result = olm_ed25519_verify(_utility, keyData.bytes, keyData.length, message.bytes, message.length, - signatureData.bytes, signatureData.length + (void*)signatureData.bytes, signatureData.length ); if (result == olm_error()) { |