diff options
author | Andy Lester <andy@petdance.com> | 2005-05-24 06:47:22 -0500 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-05-30 08:48:12 +0000 |
commit | 1df70142a966e14eb7ff3560d69bddb190dbe2ba (patch) | |
tree | dec5a61177e2694bbd232a1b49a868aa4cbebe92 /scope.c | |
parent | 5146ce245446226ed02775f664797aac87dacb4d (diff) | |
download | perl-1df70142a966e14eb7ff3560d69bddb190dbe2ba.tar.gz |
[PATCH] More embed.fnc strictures, plus consting and localizing
Date: Tue, 24 May 2005 11:47:22 -0500
Message-ID: <20050524164722.GC12027@petdance.com>
Subject: [PATCH] Remove unused casts
From: Andy Lester <andy@petdance.com>
Date: Tue, 24 May 2005 11:42:18 -0500
Message-ID: <20050524164218.GB12027@petdance.com>
p4raw-id: //depot/perl@24625
Diffstat (limited to 'scope.c')
-rw-r--r-- | scope.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -865,7 +865,7 @@ Perl_leave_scope(pTHX_ I32 base) break; case SAVEt_FREEPV: ptr = SSPOPPTR; - Safefree((char*)ptr); + Safefree(ptr); break; case SAVEt_CLEARSV: ptr = (void*)&PL_curpad[SSPOPLONG]; |