From 689bb75f29b004c28c934380676c2c22fb7e195e Mon Sep 17 00:00:00 2001 From: Moritz Lenz Date: Mon, 23 Aug 2010 19:56:42 +0200 Subject: [PATCH] fix %() segfault. Patch courtesy of TiMBuS++ --- src/builtins/Parcel.pir | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/builtins/Parcel.pir b/src/builtins/Parcel.pir index faffe795677..e0e9710e40f 100644 --- a/src/builtins/Parcel.pir +++ b/src/builtins/Parcel.pir @@ -51,7 +51,7 @@ A Parcel in item context becomes a Seq. =cut .sub 'hash' :method - .tailcall 'hash'(self) + .tailcall '&hash'(self) .end