diff options
author | Nicholas Clark <nick@ccl4.org> | 2009-12-04 15:16:04 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2009-12-04 15:18:31 +0000 |
commit | a756042476315fbf04b4211a7dfb5783ff6cba2f (patch) | |
tree | 52c8fe77e86ef2fd3dfdb68b009c433fe294c929 /perl.c | |
parent | dcae3e365f028d9009bb2a2707ea4f42a56f9f69 (diff) | |
download | perl-a756042476315fbf04b4211a7dfb5783ff6cba2f.tar.gz |
Silence Win32 compiler warning
Subject: Re: Smoke [5.11.2] v5.11.2-105-gc2123ae FAIL(F) MSWin32 Win2000 SP4 (x86/1 cpu)
Message-ID: <20091204140536.GD2582@plum.flirble.org>
(amended to fix the obvious typo)
Diffstat (limited to 'perl.c')
-rw-r--r-- | perl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4024,7 +4024,7 @@ S_init_perllib(pTHX) const char *perl5lib = NULL; #endif const char *s; -#ifdef WIN32 +#if defined(WIN32) && !defined(PERL_IS_MINIPERL) STRLEN len; #endif |