OLMKit: Fix warning in OLMUtility
This commit is contained in:
parent
bc697bf5e2
commit
aa70c8afbc
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ NSString *const OLMErrorDomain = @"org.matrix.olm";
|
||||||
size_t result = olm_ed25519_verify(_utility,
|
size_t result = olm_ed25519_verify(_utility,
|
||||||
keyData.bytes, keyData.length,
|
keyData.bytes, keyData.length,
|
||||||
message.bytes, message.length,
|
message.bytes, message.length,
|
||||||
signatureData.bytes, signatureData.length
|
(void*)signatureData.bytes, signatureData.length
|
||||||
);
|
);
|
||||||
|
|
||||||
if (result == olm_error()) {
|
if (result == olm_error()) {
|
||||||
|
|
Loading…
Reference in a new issue