summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2009-02-17 23:24:32 +0000
committerNicholas Clark <nick@ccl4.org>2009-02-17 23:27:07 +0000
commit50d61629dc7fe34f077b9f66c50287d839e06378 (patch)
treec2666e2a5df276f0327e46fe2ad9bfb0929ac8ad /proto.h
parent72533a49cbed2661d6c2811089631bb401aef2c7 (diff)
downloadperl-50d61629dc7fe34f077b9f66c50287d839e06378.tar.gz
Pass the length of the string to S_incpush_use_sep(), where known.
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/proto.h b/proto.h
index 0fb1c33dba..24665c0389 100644
--- a/proto.h
+++ b/proto.h
@@ -4760,7 +4760,7 @@ STATIC void S_find_beginning(pTHX_ SV* linestr_sv, PerlIO *rsfp)
STATIC void S_forbid_setid(pTHX_ const char flag, const bool suidscript);
STATIC void S_incpush(pTHX_ const char *const dir, STRLEN len, U32 flags);
-STATIC void S_incpush_use_sep(pTHX_ const char *p, U32 flags)
+STATIC void S_incpush_use_sep(pTHX_ const char *p, STRLEN len, U32 flags)
__attribute__nonnull__(pTHX_1);
#define PERL_ARGS_ASSERT_INCPUSH_USE_SEP \
assert(p)