summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/automatic.c
diff options
context:
space:
mode:
Diffstat (limited to 'mdk-stage1/automatic.c')
-rw-r--r--mdk-stage1/automatic.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mdk-stage1/automatic.c b/mdk-stage1/automatic.c
index 57ae1f3a6..486a829de 100644
--- a/mdk-stage1/automatic.c
+++ b/mdk-stage1/automatic.c
@@ -127,10 +127,10 @@ enum return_type ask_from_list_comments_auto(char *msg, char ** elems, char ** e
}
-enum return_type ask_from_entries_auto(char *msg, char ** questions, char *** answers, int entry_size, char ** questions_auto)
+enum return_type ask_from_entries_auto(char *msg, char ** questions, char *** answers, int entry_size, char ** questions_auto, void (*callback_func)(char ** strings))
{
if (!IS_AUTOMATIC)
- return ask_from_entries(msg, questions, answers, entry_size);
+ return ask_from_entries(msg, questions, answers, entry_size, callback_func);
else {
char * tmp_answers[50];
int i = 0;