X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/adc0a3232c43033729dbc036f0757bddfba463bd..716f2cfbd1606cfbaa0970413fc48f40531451b2:/uip/scansbr.c diff --git a/uip/scansbr.c b/uip/scansbr.c index 9f77f86b..8678c2d8 100644 --- a/uip/scansbr.c +++ b/uip/scansbr.c @@ -167,7 +167,7 @@ scan (FILE *inb, int innum, int outnum, char *nfs, int width, int curflg, */ bufsz = rlwidth; m_getfld_state_reset (&gstate); - if ((state = m_getfld (gstate, name, tmpbuf, &bufsz, inb)) == FILEEOF) { + if ((state = m_getfld (&gstate, name, tmpbuf, &bufsz, inb)) == FILEEOF) { if (ferror(inb)) { advise("read", "unable to"); /* "read error" */ return SCNFAT; @@ -190,7 +190,7 @@ scan (FILE *inb, int innum, int outnum, char *nfs, int width, int curflg, /* scan - main loop */ for (compnum = 1; ; - bufsz = rlwidth, state = m_getfld (gstate, name, tmpbuf, &bufsz, inb)) { + bufsz = rlwidth, state = m_getfld (&gstate, name, tmpbuf, &bufsz, inb)) { switch (state) { case FLD: case FLDPLUS: @@ -222,7 +222,7 @@ scan (FILE *inb, int innum, int outnum, char *nfs, int width, int curflg, while (state == FLDPLUS) { bufsz = rlwidth; - state = m_getfld (gstate, name, tmpbuf, &bufsz, inb); + state = m_getfld (&gstate, name, tmpbuf, &bufsz, inb); if (outnum) FPUTS (tmpbuf); } @@ -237,7 +237,7 @@ scan (FILE *inb, int innum, int outnum, char *nfs, int width, int curflg, if ((i = strlen(tmpbuf)) < rlwidth) { bufsz = rlwidth - i; - state = m_getfld (gstate, name, tmpbuf + i, &bufsz, inb); + state = m_getfld (&gstate, name, tmpbuf + i, &bufsz, inb); } if (! outnum) { @@ -272,7 +272,7 @@ body:; while (state == BODY) { bufsz = rlwidth; - state = m_getfld (gstate, name, tmpbuf, &bufsz, inb); + state = m_getfld (&gstate, name, tmpbuf, &bufsz, inb); FPUTS(tmpbuf); } goto finished;