From: Ladislav Michl Date: Wed, 9 Jan 2008 15:36:19 +0000 (+0100) Subject: kconfig: fix whitespace and sort includes in conf.c X-Git-Tag: v2.6.25-rc1~1164^2~41 X-Git-Url: http://www.pilppa.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=75ff4309cdb1d7303750aeed07a5d80382fe2e71;p=linux-2.6-omap-h63xx.git kconfig: fix whitespace and sort includes in conf.c Sort includes and remove leading whitespace. Signed-off-by: Ladislav Michl Signed-off-by: Sam Ravnborg Cc: Roman Zippel -#include #include +#include #include -#include #include +#include #include #define LKC_DIRECT_LINK @@ -160,7 +160,7 @@ static int conf_askvalue(struct symbol *sym, const char *def) } case set_random: do { - val = (tristate)(random() % 3); + val = (tristate)(rand() % 3); } while (!sym_tristate_within_range(sym, val)); switch (val) { case no: line[0] = 'n'; break;