avoid-unused-value-print.patch
application/octet-stream
Filename: avoid-unused-value-print.patch
Type: application/octet-stream
Part: 0
Patch
Same data as JSON:
GET /api/v1/attachments/:id/patch
the parsed metadata as JSON — format, series position, per-file stats; never the diff bytes.
API reference →
Format: unified
| File | + | − |
|---|---|---|
| src/fe_utils/print.c | 0 | 4 |
diff --git a/src/fe_utils/print.c b/src/fe_utils/print.c
index 7af1ccb6b5..89f970cb94 100644
--- a/src/fe_utils/print.c
+++ b/src/fe_utils/print.c
@@ -484,12 +484,8 @@ print_unaligned_text(const printTableContent *cont, FILE *fout)
for (f = footers; f; f = f->next)
{
if (need_recordsep)
- {
print_separator(cont->opt->recordSep, fout);
- need_recordsep = false;
- }
fputs(f->data, fout);
- need_recordsep = true;
}
}