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 /proto.h | |
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 'proto.h')
-rw-r--r-- | proto.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -3341,10 +3341,10 @@ STATIC char * S_sv_exp_grow(pTHX_ SV *sv, STRLEN needed) __attribute__warn_unused_result__ __attribute__nonnull__(pTHX_1); -STATIC char * S_bytes_to_uni(pTHX_ const U8 *start, STRLEN len, char *dest) +STATIC char * S_bytes_to_uni(const U8 *start, STRLEN len, char *dest) __attribute__warn_unused_result__ - __attribute__nonnull__(pTHX_1) - __attribute__nonnull__(pTHX_3); + __attribute__nonnull__(1) + __attribute__nonnull__(3); #endif |