diff options
author | Andy Lester <andy@petdance.com> | 2005-09-12 20:08:36 -0500 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2005-09-13 06:18:46 +0000 |
commit | bfce84ec9fb7d74c41a80b7823d3e3c5a1e43f7a (patch) | |
tree | f761266cc0d97f67f70727d48783fb411b9e5c25 /util.c | |
parent | 6329a6bc37759bdf7db227ba0bff23484e9d8b01 (diff) | |
download | perl-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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]; |