diff options
author | Andrew Donnellan <andrew.donnellan@au1.ibm.com> | 2017-02-03 13:45:01 +1100 |
---|---|---|
committer | Stewart Smith <stewart@linux.vnet.ibm.com> | 2017-02-03 14:02:42 +1100 |
commit | b1544fb834ac8405a471709190ec26e86c6e0d4c (patch) | |
tree | dea049aecd4a97c91e9653478d0cf261c3aa8376 | |
parent | ebf87529c233dfe6676ab83e567e900a91ca325f (diff) | |
download | skiboot-b1544fb834ac8405a471709190ec26e86c6e0d4c.zip skiboot-b1544fb834ac8405a471709190ec26e86c6e0d4c.tar.gz skiboot-b1544fb834ac8405a471709190ec26e86c6e0d4c.tar.bz2 |
platform: add missing \n on platform error reboot message
Signed-off-by: Andrew Donnellan <andrew.donnellan@au1.ibm.com>
Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
-rw-r--r-- | core/platform.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/platform.c b/core/platform.c index 1cae069..1d4ae6d 100644 --- a/core/platform.c +++ b/core/platform.c @@ -75,7 +75,7 @@ static int64_t opal_cec_reboot2(uint32_t reboot_type, char *diag) return opal_cec_reboot(); case OPAL_REBOOT_PLATFORM_ERROR: prlog(PR_EMERG, - "OPAL: Reboot requested due to Platform error."); + "OPAL: Reboot requested due to Platform error.\n"); buf = opal_elog_create(&e_info(OPAL_RC_ABNORMAL_REBOOT), 0); if (buf) { log_append_msg(buf, |