[svn:parrot] r41789 - trunk/config/gen/crypto
mikehh at svn.parrot.org
mikehh at svn.parrot.org
Sat Oct 10 07:22:30 UTC 2009
Author: mikehh
Date: Sat Oct 10 07:22:29 2009
New Revision: 41789
URL: https://trac.parrot.org/parrot/changeset/41789
Log:
fix commit r48782 for g++ build
Modified:
trunk/config/gen/crypto/digest_pmc.in
Modified: trunk/config/gen/crypto/digest_pmc.in
==============================================================================
--- trunk/config/gen/crypto/digest_pmc.in Sat Oct 10 06:01:33 2009 (r41788)
+++ trunk/config/gen/crypto/digest_pmc.in Sat Oct 10 07:22:29 2009 (r41789)
@@ -113,7 +113,7 @@
METHOD void Update(STRING *buf) {
@TEMP_md_guard@
@TEMP_md_ctx@ *c = PMC_data_typed(SELF, @TEMP_md_ctx@ *);
- (void)@TEMP_md_name at _Update(c, Buffer_bufstart(buf), buf->bufused);
+ (void)@TEMP_md_name at _Update(c, (const unsigned char *)Buffer_bufstart(buf), buf->bufused);
#endif
}
More information about the parrot-commits
mailing list