bcrypt: Add a trailing '\n' to a WARN() call.

Signed-off-by: Francois Gouget <fgouget@free.fr>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Francois Gouget 2016-01-24 19:52:00 +01:00 committed by Alexandre Julliard
parent 288a200bd2
commit 5d9d6e494f
1 changed files with 1 additions and 1 deletions

View File

@ -584,7 +584,7 @@ NTSTATUS WINAPI BCryptGetProperty( BCRYPT_HANDLE handle, LPCWSTR prop, UCHAR *bu
return get_hash_property( hash->alg_id, prop, buffer, count, res );
}
default:
WARN( "unknown magic %08x", object->magic );
WARN( "unknown magic %08x\n", object->magic );
return STATUS_INVALID_HANDLE;
}
}