diff options
author | Karl Williamson <public@khwilliamson.com> | 2012-02-15 18:52:38 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2012-02-15 19:05:21 -0700 |
commit | 49f5dedc48aca43e799c8b21eab3627970f5d87b (patch) | |
tree | d35cf17110134bc094a4d00b9e634691f13ad2f1 /pp.c | |
parent | 20adcf7c80fc3ad8cffa7d52b95a40d87bd781d0 (diff) | |
download | perl-49f5dedc48aca43e799c8b21eab3627970f5d87b.tar.gz |
pp.c: Cast function argument to expected type
This was breaking some builds
Diffstat (limited to 'pp.c')
-rw-r--r-- | pp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4106,7 +4106,7 @@ PP(pp_quotemeta) to_quote = TRUE; } } - else if (_is_utf8_quotemeta(s)) { + else if (_is_utf8_quotemeta((U8 *) s)) { to_quote = TRUE; } |