From e778802f53c8d47e96a6e4cbc776eb6e1d4c461a Mon Sep 17 00:00:00 2001 From: Ben Laurie Date: Sat, 17 Apr 1999 21:25:43 +0000 Subject: Massive constification. --- crypto/asn1/a_set.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crypto/asn1/a_set.c') diff --git a/crypto/asn1/a_set.c b/crypto/asn1/a_set.c index a140cc14ad..34000ecf7d 100644 --- a/crypto/asn1/a_set.c +++ b/crypto/asn1/a_set.c @@ -73,8 +73,8 @@ typedef struct */ static int SetBlobCmp(const void *elem1, const void *elem2 ) { - MYBLOB *b1 = (MYBLOB *)elem1; - MYBLOB *b2 = (MYBLOB *)elem2; + const MYBLOB *b1 = (const MYBLOB *)elem1; + const MYBLOB *b2 = (const MYBLOB *)elem2; int r; r = memcmp(b1->pbData, b2->pbData, -- cgit v1.2.3