1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-18 17:07:24 +00:00

Add parens to suppress warning about use of assignment in if-condition

This commit is contained in:
Nick Briggs 2017-05-24 17:22:03 -07:00
parent 72c8cd14af
commit ba246fa721

View File

@ -731,7 +731,7 @@ ConsCell *find_cdrable_pair(LispPTR carpart, LispPTR cdrpart)
for ( pg = (struct conspage *)Addr68k_from_LPAGE(pgno = ListpDTD->dtd_nextpage);
pgno; pg = (struct conspage *)Addr68k_from_LPAGE(pgno = pg->next_page))
{
if (cell = find_cdrpair_in_page(pg, carpart, cdrpart)) return (cell);
if ((cell = find_cdrpair_in_page(pg, carpart, cdrpart))) return (cell);
}
return (find_cdrpair_in_page(next_conspage(), carpart, cdrpart));