diff options
author | Tim Jenness <tjenness@cpan.org> | 2001-05-31 06:15:37 -1000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-01 12:48:55 +0000 |
commit | 8876ff82c32e1f2c2fd30ec37c28e8bfb676c908 (patch) | |
tree | 10dcade56adb8a59e7972106e33a7e144f9f35da /ext/XS | |
parent | f22d8e4b6ac8b32788591ab647fd40e18ea984f2 (diff) | |
download | perl-8876ff82c32e1f2c2fd30ec37c28e8bfb676c908.tar.gz |
Fix -Wall on XS::Typemap
Message-ID: <Pine.LNX.4.33.0105311610110.9337-100000@lapaki.jach.hawaii.edu>
p4raw-id: //depot/perl@10370
Diffstat (limited to 'ext/XS')
-rw-r--r-- | ext/XS/Typemap/Typemap.xs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/XS/Typemap/Typemap.xs b/ext/XS/Typemap/Typemap.xs index 5b1ab84868..b97a9bfab3 100644 --- a/ext/XS/Typemap/Typemap.xs +++ b/ext/XS/Typemap/Typemap.xs @@ -769,6 +769,7 @@ T_ARRAY( dummy, array, ... ) PREINIT: U32 size_RETVAL; CODE: + dummy += 0; /* Fix -Wall */ size_RETVAL = ix_array; RETVAL = array; OUTPUT: |