mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-26 20:12:44 +00:00
bintrans: Remove unused variable.
MFC after: 1 week Sponsored by: Klara, Inc. Reviewed by: allanjude Differential Revision: https://reviews.freebsd.org/D43559
This commit is contained in:
parent
64028ac3ba
commit
bc2913d173
@ -138,12 +138,11 @@ qp(FILE *fp, FILE *fpo, bool encode)
|
||||
{
|
||||
char *line = NULL;
|
||||
size_t linecap = 0;
|
||||
ssize_t linelen;
|
||||
void (*codec)(const char *line, FILE *f);
|
||||
|
||||
codec = encode ? encode_quoted_printable : decode_quoted_printable ;
|
||||
|
||||
while ((linelen = getline(&line, &linecap, fp)) > 0)
|
||||
while (getline(&line, &linecap, fp) > 0)
|
||||
codec(line, fpo);
|
||||
free(line);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user