aboutsummaryrefslogtreecommitdiff
path: root/xcode/OLMKit
diff options
context:
space:
mode:
authormanuroe <manu@matrix.org>2016-11-14 17:06:34 +0100
committermanuroe <manu@matrix.org>2016-11-14 17:06:34 +0100
commitaa70c8afbccdccd289a69fb513dd3664aa8e3fc7 (patch)
tree668edbaeebb3ce4e2dd00361d3e12f614ce7c01a /xcode/OLMKit
parentbc697bf5e2ddbad947aec65533d41514592ca093 (diff)
OLMKit: Fix warning in OLMUtility
Diffstat (limited to 'xcode/OLMKit')
-rw-r--r--xcode/OLMKit/OLMUtility.m2
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()) {