diff options
Diffstat (limited to 'util')
-rw-r--r-- | util/kconfig/mconf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/kconfig/mconf.c b/util/kconfig/mconf.c index 60826e3fb1..1d651c1382 100644 --- a/util/kconfig/mconf.c +++ b/util/kconfig/mconf.c @@ -330,10 +330,10 @@ static void set_subtitle(void) list_for_each_entry(sp, &trail, entries) { if (sp->text) { if (pos) { - pos->next = xcalloc(sizeof(*pos), 1); + pos->next = xcalloc(1, sizeof(*pos)); pos = pos->next; } else { - subtitles = pos = xcalloc(sizeof(*pos), 1); + subtitles = pos = xcalloc(1, sizeof(*pos)); } pos->text = sp->text; } |