Commit 75ff4309 authored by Ladislav Michl's avatar Ladislav Michl Committed by Sam Ravnborg

kconfig: fix whitespace and sort includes in conf.c

Sort includes and remove leading whitespace.
Signed-off-by: default avatarLadislav Michl <ladis@linux-mips.org>
Signed-off-by: default avatarSam Ravnborg <sam@ravnborg.org>
Cc: Roman Zippel <zippel@linux-m68k.org
parent 2c81210a
...@@ -4,11 +4,11 @@ ...@@ -4,11 +4,11 @@
*/ */
#include <ctype.h> #include <ctype.h>
#include <stdlib.h>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h>
#include <string.h> #include <string.h>
#include <unistd.h>
#include <time.h> #include <time.h>
#include <unistd.h>
#include <sys/stat.h> #include <sys/stat.h>
#define LKC_DIRECT_LINK #define LKC_DIRECT_LINK
...@@ -160,7 +160,7 @@ static int conf_askvalue(struct symbol *sym, const char *def) ...@@ -160,7 +160,7 @@ static int conf_askvalue(struct symbol *sym, const char *def)
} }
case set_random: case set_random:
do { do {
val = (tristate)(random() % 3); val = (tristate)(rand() % 3);
} while (!sym_tristate_within_range(sym, val)); } while (!sym_tristate_within_range(sym, val));
switch (val) { switch (val) {
case no: line[0] = 'n'; break; case no: line[0] = 'n'; break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment