build system: fix compiler warnings

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko
2019-01-06 20:12:16 +01:00
parent 2d9e097963
commit 4bdc914ff9
5 changed files with 13 additions and 7 deletions

View File

@ -189,7 +189,7 @@ int j_inputbox(const char *t, int ac, const char *const *av)
int ret = dialog_inputbox(t, av[2], atoi(av[3]), atoi(av[4]),
ac == 6 ? av[5] : (char *)NULL);
if (ret == 0)
fprintf(stderr, dialog_input_result);
fprintf(stderr, "%s", dialog_input_result);
return ret;
}