From 8b691309de20bb20c064cf8c9bd3502a9eddc76a Mon Sep 17 00:00:00 2001 From: Victor Lowther Date: Fri, 13 Feb 2009 04:41:47 -0800 Subject: [PATCH] [PATCH 07/50] Get rid of `` subprocess expansion when killing udevd. $() subprocess expansion is so much easier to read. --- init | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init b/init index 2b7aa364..599f8adf 100755 --- a/init +++ b/init @@ -101,7 +101,7 @@ if [ -x $NEWROOT/usr/sbin/load_policy ]; then fi # kill off udev -kill `pidof udevd` +kill $(pidof udevd) [ -x /bin/plymouth ] && plymouth --newroot=$NEWROOT