Fixed several lint complaints

This commit is contained in:
ceriel
1993-11-16 11:35:23 +00:00
parent 56177b33f4
commit 6422389e88
5 changed files with 32 additions and 48 deletions

View File

@@ -229,16 +229,15 @@ dblock_p getdtable(dname)
* is correct.
*/
dblock_p head, d, *dp;
obj_p obj, *op;
arg_p arg, *ap;
dblock_p head, d = 0, *dp = &head;
obj_p obj, *op = 0;
arg_p arg, *ap = 0;
/* dp, op an ap tell how the next dblock/obj/arg
* has to be linked.
*/
int n;
head = (dblock_p) 0;
dp = &head;
if ((curinp = fopen(dname,"r")) == NULL) {
error("cannot open %s", dname);
}