summaryrefslogtreecommitdiff
path: root/util.c
diff options
context:
space:
mode:
authorAndy Lester <andy@petdance.com>2005-09-12 20:08:36 -0500
committerH.Merijn Brand <h.m.brand@xs4all.nl>2005-09-13 06:18:46 +0000
commitbfce84ec9fb7d74c41a80b7823d3e3c5a1e43f7a (patch)
treef761266cc0d97f67f70727d48783fb411b9e5c25 /util.c
parent6329a6bc37759bdf7db227ba0bff23484e9d8b01 (diff)
downloadperl-bfce84ec9fb7d74c41a80b7823d3e3c5a1e43f7a.tar.gz
The return of the consting
Message-ID: <20050913060835.GA1037@petdance.com> p4raw-id: //depot/perl@25397
Diffstat (limited to 'util.c')
-rw-r--r--util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util.c b/util.c
index 8dd0784922..2f5e2c3eca 100644
--- a/util.c
+++ b/util.c
@@ -2129,7 +2129,7 @@ Perl_my_popen(pTHX_ const char *cmd, const char *mode)
register I32 This, that;
register Pid_t pid;
SV *sv;
- I32 doexec = !(*cmd == '-' && cmd[1] == '\0');
+ const I32 doexec = !(*cmd == '-' && cmd[1] == '\0');
I32 did_pipes = 0;
int pp[2];