diff options
author | Denis Vlasenko | 2007-07-01 18:18:54 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-07-01 18:18:54 +0000 |
commit | 679b41237ccbcb78b53df85eb9e95754158d62af (patch) | |
tree | 9ff56c72d59a6e3b097c94d34f96c322ae3bb444 /miscutils | |
parent | 4b9b0ced3010630c0bd604d9a42867ef56dbb36a (diff) | |
download | busybox-679b41237ccbcb78b53df85eb9e95754158d62af.zip busybox-679b41237ccbcb78b53df85eb9e95754158d62af.tar.gz |
devfsd: indentation fixes
Diffstat (limited to 'miscutils')
-rw-r--r-- | miscutils/devfsd.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/miscutils/devfsd.c b/miscutils/devfsd.c index 9daf4e1..3ab36cc 100644 --- a/miscutils/devfsd.c +++ b/miscutils/devfsd.c @@ -424,13 +424,13 @@ int devfsd_main(int argc, char **argv) for (count = 2; count < argc; ++count) { if (argv[count][0] == '-') { if (argv[count][1] == 'v' && !argv[count][2]) /* -v */ - print_version = TRUE; + print_version = TRUE; else if (ENABLE_DEVFSD_FG_NP && argv[count][1] == 'f' - && argv[count][2] == 'g' && !argv[count][3]) /* -fg */ - do_daemon = FALSE; + && argv[count][2] == 'g' && !argv[count][3]) /* -fg */ + do_daemon = FALSE; else if (ENABLE_DEVFSD_FG_NP && argv[count][1] == 'n' - && argv[count][2] == 'p' && !argv[count][3]) /* -np */ - no_polling = TRUE; + && argv[count][2] == 'p' && !argv[count][3]) /* -np */ + no_polling = TRUE; else bb_show_usage(); } @@ -453,7 +453,7 @@ int devfsd_main(int argc, char **argv) msg_logger_and_die(LOG_ERR, "ioctl"); /*setup initial entries */ - for (curr = initial_symlinks; curr->dest != NULL; ++curr) + for (curr = initial_symlinks; curr->dest != NULL; ++curr) symlink(curr->dest, curr->name); /* NB: The check for CONFIG_FILE is done in read_config_file() */ |