changeset 144:d0e482314513

rftablewr.c: better line break structure in the tx-calchan table
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 27 Feb 2017 03:50:10 +0000
parents daba926cc38a
children 04b5aaee06c0
files rvinterf/tmsh/rftablewr.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/rvinterf/tmsh/rftablewr.c	Mon Feb 27 03:38:07 2017 +0000
+++ b/rvinterf/tmsh/rftablewr.c	Mon Feb 27 03:50:10 2017 +0000
@@ -122,9 +122,9 @@
 	int i, j;
 	u_char *p = bin;
 
-	fputs("rf_table tx-calchan\n\n", outf);
+	fputs("rf_table tx-calchan\n", outf);
 	for (i = 0; i < 4; i++) {
-		fprintf(outf, "# Channel calibration table %d:\n\n", i);
+		fprintf(outf, "\n# Channel calibration table %d:\n\n", i);
 		for (j = 0; j < 8; j++) {
 			fprintf(outf, "%5u %6d\n", get_u16(p), get_s16(p + 2));
 			p += 4;