git: c8845dd67e44 - stable/12 - Add missing newlines.

Alexander Motin mav at FreeBSD.org
Sun Jan 31 17:07:11 UTC 2021


The branch stable/12 has been updated by mav:

URL: https://cgit.FreeBSD.org/src/commit/?id=c8845dd67e44515ab51259fbec4f6cac315a2306

commit c8845dd67e44515ab51259fbec4f6cac315a2306
Author:     Alexander Motin <mav at FreeBSD.org>
AuthorDate: 2021-01-28 23:18:53 +0000
Commit:     Alexander Motin <mav at FreeBSD.org>
CommitDate: 2021-01-31 17:07:03 +0000

    Add missing newlines.
    
    (cherry picked from commit 8fee65d0c70c99999b2fe5b49b267547b7ed2a49)
---
 sys/dev/acpica/acpi_apei.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys/dev/acpica/acpi_apei.c b/sys/dev/acpica/acpi_apei.c
index 5d1f1d4c8b16..0e3d5f6ae3da 100644
--- a/sys/dev/acpica/acpi_apei.c
+++ b/sys/dev/acpica/acpi_apei.c
@@ -333,10 +333,10 @@ apei_ged_handler(ACPI_HEST_GENERIC_DATA *ged)
 		    t[8], t[9], t[10], t[11], t[12], t[13], t[14], t[15]);
 	}
 	if (ged->ValidationBits & ACPI_HEST_GEN_VALID_FRU_STRING)
-		printf(" FRU Text: %.20s", ged->FruText);
+		printf(" FRU Text: %.20s\n", ged->FruText);
 	if (ged->Revision == 0x300 &&
 	    ged->ValidationBits & ACPI_HEST_GEN_VALID_TIMESTAMP)
-		printf(" Timestamp: %016jx", ged3->TimeStamp);
+		printf(" Timestamp: %016jx\n", ged3->TimeStamp);
 }
 
 static int


More information about the dev-commits-src-branches mailing list