Fix (style) some variable initializations.

This commit is contained in:
Garance A Drosehn 2000-11-14 22:03:59 +00:00
parent a480d5f20e
commit aa538512da
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=68734

View File

@ -354,10 +354,11 @@ printit(pp, file)
char *file;
{
register int i;
char *cp;
int bombed = OK;
int didignorehdr = 0;
char *cp;
int bombed, didignorehdr;
bombed = OK;
didignorehdr = 0;
/*
* open control file; ignore if no longer there.
*/
@ -593,7 +594,7 @@ print(pp, format, file)
int fi, fo;
FILE *fp;
char *av[15], buf[BUFSIZ];
int pid, p[2], stopped = 0;
int pid, p[2], stopped;
union wait status;
struct stat stb;
@ -612,6 +613,7 @@ print(pp, format, file)
return(ACCESS);
job_dfcnt++; /* increment datafile counter for this job */
stopped = 0; /* output filter is not stopped */
/* everything seems OK, start it up */
if (!pp->no_formfeed && !pp->tof) { /* start on a fresh page */