diff --git a/[refs] b/[refs] index 7f277acafef4..69cb62017123 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 2c81210a26fb84c0af6aad95f6ec1d61cf276cd0 +refs/heads/master: 75ff4309cdb1d7303750aeed07a5d80382fe2e71 diff --git a/trunk/scripts/kconfig/conf.c b/trunk/scripts/kconfig/conf.c index d4737d35e720..a3d2d0b564f4 100644 --- a/trunk/scripts/kconfig/conf.c +++ b/trunk/scripts/kconfig/conf.c @@ -4,11 +4,11 @@ */ #include -#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;