diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2006-04-08 12:58:43 +0300 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-04-10 11:12:26 +0000 |
commit | de5e01c2603e3fa2c0e1b6603c7f4f31802c829d (patch) | |
tree | 7e5aeece9eedb01ea99f57ab463348ab04cfd4c9 /pad.h | |
parent | 097eb12cc39d98a6d964631d26d4a7e23e180985 (diff) | |
download | perl-de5e01c2603e3fa2c0e1b6603c7f4f31802c829d.tar.gz |
es: quiet some warnings (with a free AIX cpp insanity avoidance tip)
Message-ID: <44375F23.6030900@gmail.com>
Date: Sat, 08 Apr 2006 09:58:43 +0300
p4raw-id: //depot/perl@27754
Diffstat (limited to 'pad.h')
-rw-r--r-- | pad.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -147,17 +147,17 @@ Restore the old pad saved into the local variable opad by PAD_SAVE_LOCAL() ? AvARRAY((AV*)(AvARRAY(padlist)[1]))[po] : NULL; -#define PAD_SET_CUR_NOSAVE(padlist,n) \ - PL_comppad = (PAD*) (AvARRAY(padlist)[n]); \ +#define PAD_SET_CUR_NOSAVE(padlist,nth) \ + PL_comppad = (PAD*) (AvARRAY(padlist)[nth]); \ PL_curpad = AvARRAY(PL_comppad); \ DEBUG_Xv(PerlIO_printf(Perl_debug_log, \ "Pad 0x%"UVxf"[0x%"UVxf"] set_cur depth=%d\n", \ - PTR2UV(PL_comppad), PTR2UV(PL_curpad), (int)(n))); + PTR2UV(PL_comppad), PTR2UV(PL_curpad), (int)(nth))); -#define PAD_SET_CUR(padlist,n) \ +#define PAD_SET_CUR(padlist,nth) \ SAVECOMPPAD(); \ - PAD_SET_CUR_NOSAVE(padlist,n); + PAD_SET_CUR_NOSAVE(padlist,nth); #define PAD_SAVE_SETNULLPAD() SAVECOMPPAD(); \ |