diff options
author | Arjun Sreedharan <arjun024@gmail.com> | 2014-12-06 06:40:43 -0500 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2014-12-09 08:06:29 -0500 |
commit | e4e458b45c5861808674eebfea94cee2258bb2ea (patch) | |
tree | 8864aff017c25af0c6c4a5294e0a73a6aec2bd12 /scripts/kconfig | |
parent | 2e77784bb7d882647c33d8e75a650625e6df0f8b (diff) |
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>
Diffstat (limited to 'scripts/kconfig')
-rw-r--r-- | scripts/kconfig/mconf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/kconfig/mconf.c b/scripts/kconfig/mconf.c index 14cea7463a62..4dd37552abc2 100644 --- a/scripts/kconfig/mconf.c +++ b/scripts/kconfig/mconf.c | |||
@@ -330,10 +330,10 @@ static void set_subtitle(void) | |||
330 | list_for_each_entry(sp, &trail, entries) { | 330 | list_for_each_entry(sp, &trail, entries) { |
331 | if (sp->text) { | 331 | if (sp->text) { |
332 | if (pos) { | 332 | if (pos) { |
333 | pos->next = xcalloc(sizeof(*pos), 1); | 333 | pos->next = xcalloc(1, sizeof(*pos)); |
334 | pos = pos->next; | 334 | pos = pos->next; |
335 | } else { | 335 | } else { |
336 | subtitles = pos = xcalloc(sizeof(*pos), 1); | 336 | subtitles = pos = xcalloc(1, sizeof(*pos)); |
337 | } | 337 | } |
338 | pos->text = sp->text; | 338 | pos->text = sp->text; |
339 | } | 339 | } |