diff options
author | Christophe Grenier <[email protected]> | 2014-02-02 15:24:26 +0100 |
---|---|---|
committer | Christophe Grenier <[email protected]> | 2014-02-02 15:24:26 +0100 |
commit | 4b13874dd065b4f3b5b1675f7e1a6fa68ab59efa (patch) | |
tree | fd096285b0b2b2f0099b432951115186d2937738 /src | |
parent | 4510835e94d07809f1be52fe31a87a3bd02efc50 (diff) |
src/intrface.c: remove current_cmd parameter from ask_structure_ncurses prototype
Diffstat (limited to 'src')
-rw-r--r-- | src/intrface.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/intrface.c b/src/intrface.c index 2e126159..25ca3a8e 100644 --- a/src/intrface.c +++ b/src/intrface.c @@ -107,7 +107,7 @@ static list_part_t *ask_structure_cli(disk_t *disk_car,list_part_t *list_part, c #ifdef HAVE_NCURSES #define INTER_STRUCTURE (LINES-12) -static list_part_t *ask_structure_ncurses(disk_t *disk_car,list_part_t *list_part, const int verbose, char **current_cmd) +static list_part_t *ask_structure_ncurses(disk_t *disk_car,list_part_t *list_part, const int verbose) { int offset=0; int pos_num=0; @@ -363,8 +363,9 @@ static list_part_t *ask_structure_ncurses(disk_t *disk_car,list_part_t *list_par if(list_part!=NULL) { const partition_t *partition=pos->part; + char *current_cmd=NULL; if(partition->sb_offset==0 || partition->sb_size==0) - dir_partition(disk_car,partition,verbose, current_cmd); + dir_partition(disk_car,partition,verbose, ¤t_cmd); else { io_redir_add_redir(disk_car, @@ -372,7 +373,7 @@ static list_part_t *ask_structure_ncurses(disk_t *disk_car,list_part_t *list_par partition->sb_size, partition->part_offset+partition->sb_offset, NULL); - dir_partition(disk_car,partition,verbose, current_cmd); + dir_partition(disk_car,partition,verbose, ¤t_cmd); io_redir_del_redir(disk_car, partition->part_offset+partition->sborg_offset); } rewrite=1; @@ -423,7 +424,7 @@ list_part_t *ask_structure(disk_t *disk_car,list_part_t *list_part, const int ve if(*current_cmd!=NULL) return ask_structure_cli(disk_car, list_part, verbose, current_cmd); #ifdef HAVE_NCURSES - return ask_structure_ncurses(disk_car, list_part, verbose, current_cmd); + return ask_structure_ncurses(disk_car, list_part, verbose); #else return list_part; #endif |