From d9f5817e8ae88d492c5efece5f5c0dd47e153ad4 Mon Sep 17 00:00:00 2001 From: Gerald Pfeifer Date: Sat, 17 Nov 2007 07:36:51 +0100 Subject: [PATCH] rsaenh/tests: Fix const-ness of parameters to printBytes(). --- dlls/rsaenh/tests/rsaenh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/rsaenh/tests/rsaenh.c b/dlls/rsaenh/tests/rsaenh.c index d2216475e1e..a8c8c4fd921 100644 --- a/dlls/rsaenh/tests/rsaenh.c +++ b/dlls/rsaenh/tests/rsaenh.c @@ -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); -- 2.11.4.GIT