Commit caa5f68e authored by Zhiyi Zhang's avatar Zhiyi Zhang Committed by Alexandre Julliard

bcrypt: Fix a compiler warning on Mac.

parent 8a7dc454
...@@ -272,7 +272,7 @@ static NTSTATUS CDECL key_asymmetric_duplicate( struct key *key_orig, struct key ...@@ -272,7 +272,7 @@ static NTSTATUS CDECL key_asymmetric_duplicate( struct key *key_orig, struct key
} }
static NTSTATUS CDECL key_asymmetric_decrypt( struct key *key, UCHAR *input, ULONG input_len, static NTSTATUS CDECL key_asymmetric_decrypt( struct key *key, UCHAR *input, ULONG input_len,
UCHAR *output, ULONG *output_len ) UCHAR *output, ULONG output_len, ULONG *ret_len )
{ {
FIXME( "not implemented on Mac\n" ); FIXME( "not implemented on Mac\n" );
return STATUS_NOT_IMPLEMENTED; return STATUS_NOT_IMPLEMENTED;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment