diff options
author | Kay Sievers <kay.sievers@vrfy.org> | 2011-12-23 03:40:31 +0100 |
---|---|---|
committer | Kay Sievers <kay.sievers@vrfy.org> | 2011-12-23 03:40:31 +0100 |
commit | c7f9693c149d2179d7922cae3e9930381a3a1d11 (patch) | |
tree | 273a381ffcb732e22c39306d2a1dc45c40801d03 | |
parent | 95de03a7a20e02f06d2bbe8350f1b5e89af02790 (diff) |
builtin: blkid - add missing newline
-rwxr-xr-x | autogen.sh | 9 | ||||
-rw-r--r-- | udev/udev-builtin-blkid.c | 2 |
2 files changed, 6 insertions, 5 deletions
diff --git a/autogen.sh b/autogen.sh index ba95669426..ceb7e65018 100755 --- a/autogen.sh +++ b/autogen.sh @@ -24,11 +24,12 @@ libdir() { args="--prefix=/usr \ --sysconfdir=/etc \ ---bindir=/usr/bin \ ---sbindir=/usr/sbin \ +--bindir=/sbin \ +--sbindir=/sbin \ --libdir=$(libdir /usr/lib) \ ---libexecdir=/usr/lib/udev \ ---with-systemdsystemunitdir=/usr/lib/systemd/system +--with-rootlibdir=$(libdir /lib) \ +--libexecdir=/lib/udev \ +--with-systemdsystemunitdir=/lib/systemd/system --with-selinux \ --enable-gtk-doc" diff --git a/udev/udev-builtin-blkid.c b/udev/udev-builtin-blkid.c index 3187ab0b02..78fdf3c7c7 100644 --- a/udev/udev-builtin-blkid.c +++ b/udev/udev-builtin-blkid.c @@ -171,7 +171,7 @@ static int builtin_blkid(struct udev_device *dev, int argc, char *argv[], bool t if (err < 0) goto out; - info(udev, "probe %s %sraid offset=%llu", + info(udev, "probe %s %sraid offset=%llu\n", udev_device_get_devnode(dev), noraid ? "no" : "", (unsigned long long) offset); |