Skip to content

Commit

Permalink
fix commit r48782 for g++ build
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.parrot.org/parrot/trunk@41789 d31e2699-5ff4-0310-a27c-f18f2fbe73fe
  • Loading branch information
mikehh committed Oct 10, 2009
1 parent d6392ea commit d30f1f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/gen/crypto/digest_pmc.in
Expand Up @@ -113,7 +113,7 @@ pmclass @TEMP_md_name@
METHOD void Update(STRING *buf) {
@TEMP_md_guard@
@TEMP_md_ctx@ *c = PMC_data_typed(SELF, @TEMP_md_ctx@ *);
(void)@TEMP_md_name@_Update(c, Buffer_bufstart(buf), buf->bufused);
(void)@TEMP_md_name@_Update(c, (const unsigned char *)Buffer_bufstart(buf), buf->bufused);
#endif
}

Expand Down

0 comments on commit d30f1f5

Please sign in to comment.