diff options
author | Larry Wall <lwall@netlabs.com> | 1992-06-11 08:21:11 +0000 |
---|---|---|
committer | Larry Wall <lwall@netlabs.com> | 1992-06-11 08:21:11 +0000 |
commit | faf8582f0c418b57fd71e105da84edbb3177fa0c (patch) | |
tree | 362f6aa8bbc6e5d971e30ed808182176ae405c8e /util.c | |
parent | 2f3197b3c480b4120c210442c74a59d064d932c9 (diff) | |
download | perl-faf8582f0c418b57fd71e105da84edbb3177fa0c.tar.gz |
perl 4.0 patch 34: (combined patch)
Here's the typical cleanup patch that follows any large
set of patches. My testing organization is either too large
or too small, depending on how you look at it, sigh...
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $RCSfile: util.c,v $$Revision: 4.0.1.5 $$Date: 92/06/08 16:08:37 $ +/* $RCSfile: util.c,v $$Revision: 4.0.1.6 $$Date: 92/06/11 21:18:47 $ * * Copyright (c) 1991, Larry Wall * @@ -6,6 +6,9 @@ * License or the Artistic License, as specified in the README file. * * $Log: util.c,v $ + * Revision 4.0.1.6 92/06/11 21:18:47 lwall + * patch34: boneheaded typo in my_bcopy() + * * Revision 4.0.1.5 92/06/08 16:08:37 lwall * patch20: removed implicit int declarations on functions * patch20: Perl now distinguishes overlapped copies from non-overlapped @@ -1185,7 +1188,7 @@ register int len; to += len; from += len; while (len--) - --*to = --*from; + *(--to) = *(--from); } return retval; } |