Gerald Pfeifer : rsaenh/tests: Fix const-ness of parameters to printBytes() .
Module: wine Branch: master Commit: d9f5817e8ae88d492c5efece5f5c0dd47e153ad4 URL: http://source.winehq.org/git/wine.git/?a=commit;h=d9f5817e8ae88d492c5efece5f... Author: Gerald Pfeifer <gerald(a)pfeifer.com> Date: Sat Nov 17 07:36:51 2007 +0100 rsaenh/tests: Fix const-ness of parameters to printBytes(). --- dlls/rsaenh/tests/rsaenh.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/rsaenh/tests/rsaenh.c b/dlls/rsaenh/tests/rsaenh.c index d221647..a8c8c4f 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);
participants (1)
-
Alexandre Julliard