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

oldstable
Gerald Pfeifer 2007-11-17 07:36:51 +01:00 committed by Alexandre Julliard
parent 909744a28d
commit d9f5817e8a
1 changed files with 1 additions and 1 deletions

View File

@ -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);