diff options
| author | Gary Ching-Pang Lin <glin@suse.com> | 2014-06-25 10:12:43 -0400 |
|---|---|---|
| committer | Peter Jones <pjones@redhat.com> | 2014-06-25 10:12:43 -0400 |
| commit | 95c6743e4cc8f89d25c634ad85359081f3e7ab00 (patch) | |
| tree | cbc06f232cee93d9aa3794e6b4a9f01c1fffde88 /shim.c | |
| parent | ea1c89b047eb4b071efb533808b7d6ca6ae6e719 (diff) | |
| download | efi-boot-shim-95c6743e4cc8f89d25c634ad85359081f3e7ab00.tar.gz efi-boot-shim-95c6743e4cc8f89d25c634ad85359081f3e7ab00.zip | |
No newline for console_notify
The newlines are for Print(), not console_notify().
Signed-off-by: Gary Ching-Pang Lin <glin@suse.com>
Conflicts:
shim.c
Diffstat (limited to 'shim.c')
| -rw-r--r-- | shim.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -479,7 +479,7 @@ static BOOLEAN secure_mode (void) status = get_variable(L"SecureBoot", &Data, &len, global_var); if (status != EFI_SUCCESS) { if (verbose) - console_notify(L"Secure boot not enabled\n"); + console_notify(L"Secure boot not enabled"); return FALSE; } sb = *Data; @@ -487,7 +487,7 @@ static BOOLEAN secure_mode (void) if (sb != 1) { if (verbose) - console_notify(L"Secure boot not enabled\n"); + console_notify(L"Secure boot not enabled"); return FALSE; } @@ -500,7 +500,7 @@ static BOOLEAN secure_mode (void) if (setupmode == 1) { if (verbose) - console_notify(L"Platform is in setup mode\n"); + console_notify(L"Platform is in setup mode"); return FALSE; } |
