diff options
author | maximilian attems <maks@debian.org> | 2006-07-16 21:54:14 +0200 |
---|---|---|
committer | maximilian attems <maks@debian.org> | 2006-07-16 21:54:14 +0200 |
commit | 17d01b3434dac54ace5991029ed069b3d185ffd2 (patch) | |
tree | c31f2ca8f0ca57242e7db41ef1bf12c86cc97fa6 /scripts/functions | |
parent | 8e9ecf2b5f9ced135e29d12fbe53c727a248934d (diff) | |
download | initramfs-tools-17d01b3434dac54ace5991029ed069b3d185ffd2.tar.gz initramfs-tools-17d01b3434dac54ace5991029ed069b3d185ffd2.zip |
massif whitespace cleanup
Diffstat (limited to 'scripts/functions')
-rw-r--r-- | scripts/functions | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/scripts/functions b/scripts/functions index c3a3e16..53e07ca 100644 --- a/scripts/functions +++ b/scripts/functions @@ -2,23 +2,23 @@ _log_msg() { - if [ "$quiet" = "y" ]; then return; fi - echo "$@" + if [ "$quiet" = "y" ]; then return; fi + echo "$@" } log_success_msg() { - _log_msg "Success: $@" + _log_msg "Success: $@" } log_failure_msg() { - _log_msg "Failure: $@" + _log_msg "Failure: $@" } log_warning_msg() { - _log_msg "Warning: $@" + _log_msg "Warning: $@" } log_begin_msg() @@ -190,7 +190,7 @@ load_modules() if [ -e /conf/modules ]; then cat /conf/modules | while read m; do # Skip empty lines - if [ -z "$m" ]; then + if [ -z "$m" ]; then continue fi # Skip comments - d?ash removes whitespace prefix |