mirror of
https://github.com/reactos/wine.git
synced 2024-11-26 21:20:25 +00:00
rsaenh/tests: Fix const-ness of parameters to printBytes().
This commit is contained in:
parent
909744a28d
commit
d9f5817e8a
@ -54,7 +54,7 @@ static const cryptdata cTestData[4] = {
|
||||
12,12,16}
|
||||
};
|
||||
|
||||
static void printBytes(const char *heading, BYTE *pb, size_t cb)
|
||||
static void printBytes(const char *heading, const BYTE *pb, size_t cb)
|
||||
{
|
||||
size_t i;
|
||||
printf("%s: ",heading);
|
||||
|
Loading…
Reference in New Issue
Block a user