diff options
author | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2015-04-06 01:30:44 +0200 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2015-04-06 23:14:59 +0200 |
commit | 5910aa88a775bf37ebe445fa89c34389add000b6 (patch) | |
tree | 373590a7e4b50be1d068b142e0e73105c2872ef9 /util/kconfig/mconf.c | |
parent | 1824ce3c402b0f09e852c464cd8d83f019ba85ec (diff) | |
download | coreboot-5910aa88a775bf37ebe445fa89c34389add000b6.tar.xz |
kconfig: calloc/xcalloc: Fix argument order
The calloc() and xcalloc() functions takes @nmemb first and then @size. Fix all w/
pattern "calloc\s*(\s*sizeof".
Signed-off-by: Arjun Sreedharan <arjun024@gmail.com>
Cc: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1417866043-1877-1-git-send-email-arjun024@gmail.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Change-Id: I8b51cc59b3f3631b93b7e215fec5bf140cc2cbf9
Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Reviewed-on: http://review.coreboot.org/9313
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Marc Jones <marc.jones@se-eng.com>
Diffstat (limited to 'util/kconfig/mconf.c')
-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; } |