From 5e66d4f1f8d408decca63565193d2b1424d52c7c Mon Sep 17 00:00:00 2001 From: Yitzchak Scott-Thoennes Date: Thu, 26 Oct 2000 07:00:03 -0700 Subject: [ID 20001026.006] C gives uninitialized warning Message-Id: <200010262100.e9QL03U06386@garcia.efn.org> p4raw-id: //depot/perl@7454 --- pp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pp.c') diff --git a/pp.c b/pp.c index 6d77ca1bfa..cc3f7ebf06 100644 --- a/pp.c +++ b/pp.c @@ -1566,7 +1566,7 @@ PP(pp_i_add) { djSP; dATARGET; tryAMAGICbin(add,opASSIGN); { - dPOPTOPiirl; + dPOPTOPiirl_ul; SETi( left + right ); RETURN; } @@ -1576,7 +1576,7 @@ PP(pp_i_subtract) { djSP; dATARGET; tryAMAGICbin(subtr,opASSIGN); { - dPOPTOPiirl; + dPOPTOPiirl_ul; SETi( left - right ); RETURN; } -- cgit v1.2.1