diff options
author | Thomas Bächler <thomas@archlinux.org> | 2010-02-20 16:09:36 +0100 |
---|---|---|
committer | Thomas Bächler <thomas@archlinux.org> | 2010-02-20 16:09:36 +0100 |
commit | e7ad4fe63a52babe428ece24aeb8109977f309cb (patch) | |
tree | 446709ffb09d5416e6a1c734a25596223fadf41d | |
parent | 3bd7dd1a022b29c35287ce82c19c2da239b4251a (diff) | |
download | mkinitcpio-e7ad4fe63a52babe428ece24aeb8109977f309cb.tar.gz mkinitcpio-e7ad4fe63a52babe428ece24aeb8109977f309cb.tar.xz |
Cosmetic change: 'msg' function does not support '\n'
-rw-r--r-- | init_functions | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init_functions b/init_functions index ebdb468..ec8981a 100644 --- a/init_functions +++ b/init_functions @@ -30,7 +30,7 @@ launch_interactive_shell() { default_mount_handler() { if [ ${root:0:5} != "/dev/" ] || ! poll_device "${root}" ${rootdelay}; then - msg "\nRoot device '${root}' doesn't exist. Attempting to create it." + msg "Root device '${root}' doesn't exist. Attempting to create it." rootdev="" if [ ${root:0:5} = "/dev/" ]; then # It might be a block device (/dev/sda) -> /sys/block/sda/dev |