From: Gurusamy Sarathy <gsar@cpan.org>
Date: Fri, 8 Oct 1999 00:58:19 +0000 (+0000)
Subject: typo
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=0a30450eff33ad0d9a30d3e5e9e92dce35ee33b7;p=p5sagit%2Fp5-mst-13.2.git

typo

p4raw-id: //depot/perl@4311
---

diff --git a/pp_sys.c b/pp_sys.c
index 12b3ef9..ce08d49 100644
--- a/pp_sys.c
+++ b/pp_sys.c
@@ -3808,7 +3808,7 @@ PP(pp_setpgrp)
     SETi( BSD_SETPGRP(pid, pgrp) >= 0 );
 #else
     if ((pgrp != 0 && pgrp != getpid()) || (pid != 0 && pid != getpid()))
-	DIE(aTHX_ "setpgrp can't take an argument");
+	DIE(aTHX_ "setpgrp can't take arguments");
     SETi( setpgrp() >= 0 );
 #endif /* USE_BSDPGRP */
     RETURN;