Commit d9f5817e authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard

rsaenh/tests: Fix const-ness of parameters to printBytes().

parent 909744a2
......@@ -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);
......
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