On Tuesday 29 April 2008 21:28:18 Andy Dougherty wrote:

> If I have traced its lineage correctly, this patch fixes the following
> problem in sha256.c and sha512.c:
>
>     "./sha256.pmc", line 164: void function cannot return value
>
> (note that line 164 of sha256.pm is actually the "vim: ..." comment
> at the end of the file.  I'm not sure where the line numbers are
> getting messed up.)
>
> --- parrot-svn/config/gen/crypto/digest_pmc.in        Mon Apr 28 12:31:25 2008
> +++ parrot-cc/config/gen/crypto/digest_pmc.in Tue Apr 29 11:35:03 2008
> @@ -134,7 +134,7 @@
>
>          RETURN(STRING *retval);
>  #else
> -        return NULL;
> +        return;
>  #endif
>      }

Thanks, applied as r27246.

-- c

Reply via email to