From 56a8cd53b6e5a58c3f35a74f1e6e4f9b8637d971 Mon Sep 17 00:00:00 2001 From: keie Date: Mon, 21 Jan 1985 14:20:11 +0000 Subject: [PATCH] Added a few comments to indicate awareness of lint complaints. --- lang/basic/src.old/graph.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lang/basic/src.old/graph.c b/lang/basic/src.old/graph.c index d7624292a..c09b65dbc 100644 --- a/lang/basic/src.old/graph.c +++ b/lang/basic/src.old/graph.c @@ -14,7 +14,7 @@ Linerecord *firstline, List *newlist() { List *l; - l= (List *) salloc(sizeof(List)); + /*NOSTRICT*/ l= (List *) salloc(sizeof(List)); return(l); } @@ -75,7 +75,7 @@ int nr; } /* make new EM block structure */ - l= (Linerecord *) salloc(sizeof(*l)); + /*NOSTRICT*/ l= (Linerecord *) salloc(sizeof(*l)); l->emlabel= frwrd? frwrd->emlabel: genlabel(); l->linenr= nr; /* save offset into tmpfile too */ -- 2.34.1