From 089c188b06a6903af8aff5d656256b5a9cef8ac6 Mon Sep 17 00:00:00 2001 From: PartialVolume Date: Sun, 31 Oct 2021 21:30:20 +0000 Subject: [PATCH] Fix slight screen corruption on 80 column display When highlighting the verify ones option the first two digits of DoD 5220 .20-M disappear. This patch fixes that issue. --- src/gui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui.c b/src/gui.c index b6ec3f5..68dc464 100644 --- a/src/gui.c +++ b/src/gui.c @@ -2133,7 +2133,7 @@ void nwipe_gui_method( void ) mvwprintw( main_window, 2, tab2, "Security Level: Not applicable" ); mvwprintw( main_window, 4, tab2, "This method only reads the device and checks " ); - mvwprintw( main_window, 5, tab2, "that it is all ones (0xFF). " ); + mvwprintw( main_window, 5, tab2, "that it is all ones (0xFF)." ); break;