Renaming outp to outbufp because outp() is an existing function
This commit is contained in:
parent
36f65fd7c5
commit
6de3f51c23
4 changed files with 11 additions and 11 deletions
|
@ -470,10 +470,10 @@ builtin(Tokenrow *trp, int biname)
|
|||
/* most are strings */
|
||||
tp->type = STRING;
|
||||
if (tp->wslen) {
|
||||
*outp++ = ' ';
|
||||
*outbufp++ = ' ';
|
||||
tp->wslen = 1;
|
||||
}
|
||||
op = outp;
|
||||
op = outbufp;
|
||||
*op++ = '"';
|
||||
switch (biname) {
|
||||
|
||||
|
@ -508,7 +508,7 @@ builtin(Tokenrow *trp, int biname)
|
|||
}
|
||||
if (tp->type==STRING)
|
||||
*op++ = '"';
|
||||
tp->t = (uchar*)outp;
|
||||
tp->len = op - outp;
|
||||
outp = op;
|
||||
tp->t = (uchar*)outbufp;
|
||||
tp->len = op - outbufp;
|
||||
outbufp = op;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue