Add the missing \n to one of the printf()s in the patch.

This commit is contained in:
Mikhail Teterin 2003-08-20 21:44:34 +00:00
parent 897b001ea6
commit af655ec14a
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=87406

View file

@ -686,7 +686,7 @@ Hopefully, their next release will include these hunks.
+ case SCREEN_OUTPUT:
+ for (i=1; i < header_length; i++) {
+ dbf = header[i];
+ printf("%11.11s: %.*s", dbf->field_name,
+ printf("%11.11s: %.*s\n", dbf->field_name,
+ dbf->field_length, p);
+ p += dbf->field_length;
}