From 1b78f387452e1abcd4cbd64b7dfbd4777e67c79d Mon Sep 17 00:00:00 2001 From: Christophe Grenier Date: Sat, 14 Oct 2017 09:56:35 +0200 Subject: [PATCH] PhotoRec: Fix for request #36: when the list of recovered files gets to 11 lines, the 11th ("others") makes disappear the "STOP" label. --- src/phnc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/phnc.c b/src/phnc.c index ee31470e..dc5aaeae 100644 --- a/src/phnc.c +++ b/src/phnc.c @@ -53,7 +53,7 @@ void photorec_info(WINDOW *window, const file_stat_t *file_stats) new_file_stats=(file_stat_t*)MALLOC(nbr*sizeof(file_stat_t)); memcpy(new_file_stats, file_stats, nbr*sizeof(file_stat_t)); qsort(new_file_stats, nbr, sizeof(file_stat_t), sorfile_stat_ts); - for(i=0; i<10 && i0; i++) + for(i=0; i<9 && i0; i++) { wmove(window,12+i,0); wclrtoeol(window); @@ -66,7 +66,7 @@ void photorec_info(WINDOW *window, const file_stat_t *file_stats) others+=new_file_stats[i].recovered; if(others>0) { - wmove(window,12+10,0); + wmove(window,12+9,0); wclrtoeol(window); wprintw(window, "others: %u recovered\n", others); }