From b18b5ffd55f9b6862bf6acaeb9ce12727a79b79a Mon Sep 17 00:00:00 2001 From: Peter Martini Date: Fri, 25 Nov 2011 18:23:53 -0500 Subject: [PATCH] Change a semicolon to a colon. This is necessary for the shared mem example to compile --- pod/perlipc.pod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pod/perlipc.pod b/pod/perlipc.pod index 6709827..7650838 100644 --- a/pod/perlipc.pod +++ b/pod/perlipc.pod @@ -1687,7 +1687,7 @@ Here's a small example showing shared memory usage. print "read : '$buff'\n"; # the buffer of shmread is zero-character end-padded. - substr($buff, index($buff, "\0")) = "": + substr($buff, index($buff, "\0")) = ""; print "un" unless $buff eq $message; print "swell\n"; -- 2.7.4