$RBGB/bdetest051007.2320 -------------------------- pr_util_log/alpha/probj/pr_load.c:874: warning: char format, FILE arg (arg 3) pr_util_log/alpha/probj/pr_dump.c:81: warning: array subscript has type `char I re-added $(OBJDIR)/ on .o files list, and removed $(OBJDIR)/ from targets %.o and $(@). Mercury test of bde: pr_init cannot open /fonts.dat to get table stats. mercury.cs.uml.edu(62)> grep 'to get table stats' ../pr_util/*.c grep 'to get table stats' ../pr_util/*.c ../pr_util/pr_load.c:857: printf("pr_init cannot open %s to get table stats.\n", scan_filename); in pr_init(): ------------------ * ======= copy each infile to local tempinfile.txt ========================= */ fnidx = 0; /* hcg_parse index of filename into filelist */ hcg_parse(filelist,scan_filename,&fnidx); dprints("pr_init: scan_filename is %s\n", scan_filename); while (scan_filename[0] != '\0') { /* OPEN INFILE */ if ((hcg_ascii_fp=fopen(scan_filename,"r")) == NULL) { printf("pr_init cannot open %s to get table stats.\n", scan_filename); exit(2); } ... /* READ ALL LINES FROM EACH FILE: copy to local filename */ hcg_read_next(); /* fills hcg_buffer */ while ( !feof(hcg_ascii_fp) ) { /* if hcg_log == 1, append infile data rows to logdata.txt */ /* and check pkey validity and range */ /* Genlog 5/7/96: log table rows [to be] copied to logdata_fp file */ if (hcg_log == 1) /* was != 2 (not in replay) - RJL 040622 */ fprintf(logdata_fp, "%s\n",hcg_buffer); <<<<<