Added a few comments to indicate awareness of lint complaints.
This commit is contained in:
parent
8d7dbdd802
commit
ac043a42de
@ -14,7 +14,7 @@ Linerecord *firstline,
|
|||||||
List *newlist()
|
List *newlist()
|
||||||
{
|
{
|
||||||
List *l;
|
List *l;
|
||||||
l= (List *) salloc(sizeof(List));
|
/*NOSTRICT*/ l= (List *) salloc(sizeof(List));
|
||||||
return(l);
|
return(l);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -75,7 +75,7 @@ int nr;
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* make new EM block structure */
|
/* make new EM block structure */
|
||||||
l= (Linerecord *) salloc(sizeof(*l));
|
/*NOSTRICT*/ l= (Linerecord *) salloc(sizeof(*l));
|
||||||
l->emlabel= frwrd? frwrd->emlabel: genlabel();
|
l->emlabel= frwrd? frwrd->emlabel: genlabel();
|
||||||
l->linenr= nr;
|
l->linenr= nr;
|
||||||
/* save offset into tmpfile too */
|
/* save offset into tmpfile too */
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user