diff options
author | Andy Lester <andy@petdance.com> | 2006-05-20 19:02:40 -0500 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-05-23 07:27:11 +0000 |
commit | 14333449d262b4fad02b614f81937e2c67a05581 (patch) | |
tree | 00f50ff25bb16c3c8e6d51d66fa1a9460c38a677 /pp_pack.c | |
parent | c0b17f21fab4979f8ef6bccb58a7d0fe471b35e3 (diff) | |
download | perl-14333449d262b4fad02b614f81937e2c67a05581.tar.gz |
clean some lint findings
Message-ID: <20060521050240.GA21051@petdance.com>
p4raw-id: //depot/perl@28289
Diffstat (limited to 'pp_pack.c')
-rw-r--r-- | pp_pack.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -703,7 +703,7 @@ next_uni_uu(pTHX_ const char **s, const char *end, I32 *out) } STATIC char * -S_bytes_to_uni(pTHX_ const U8 *start, STRLEN len, char *dest) { +S_bytes_to_uni(const U8 *start, STRLEN len, char *dest) { const U8 * const end = start + len; while (start < end) { |