diff options
author | Karl Williamson <khw@cpan.org> | 2014-08-23 17:50:11 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2014-08-25 11:13:40 -0600 |
commit | 5b26a7b38f5eacab94ffc56c123c01ad6c3788dc (patch) | |
tree | b3d55360a7efaa4ef4d00def42a3da2d6adca541 | |
parent | e498d484a15e57b4020cfab88ec97f4f4eaa3ecb (diff) | |
download | perl-5b26a7b38f5eacab94ffc56c123c01ad6c3788dc.tar.gz |
sv.c: Silence VMS compiler warning
The result of this must be at least 0 as the type is unsigned, so
the compiler gives a warning.
-rw-r--r-- | sv.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3495,7 +3495,7 @@ must_be_utf8: * set so starts from there. Otherwise, can use memory copy to * get up to where we are now, and then start from here */ - if (invariant_head <= 0) { + if (invariant_head == 0) { d = dst; } else { Copy(s, dst, invariant_head, char); |