X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Flogin%2Fsysfs-show.c;h=9a9fb7622d1732abb69576101105da5328fd02e4;hb=25387573767909c96090ad22cccafc72c16542d7;hp=939bd6125e21f23a1d6598d0bc7d990daed78426;hpb=ddae67fa1bdd86b480a60ad6fc1d90d6f35a03d0;p=elogind.git diff --git a/src/login/sysfs-show.c b/src/login/sysfs-show.c index 939bd6125..9a9fb7622 100644 --- a/src/login/sysfs-show.c +++ b/src/login/sysfs-show.c @@ -27,6 +27,7 @@ #include "sysfs-show.h" #include "path-util.h" #include "udev-util.h" +#include "terminal-util.h" static int show_sysfs_one( struct udev *udev, @@ -121,13 +122,13 @@ static int show_sysfs_one( if (!k) return -ENOMEM; - printf("%s%s%s\n", prefix, lookahead ? draw_special_char(DRAW_TREE_VERT) : " ", k); + printf("%s%s%s\n", prefix, lookahead ? draw_special_char(DRAW_TREE_VERTICAL) : " ", k); *item = next; if (*item) { _cleanup_free_ char *p = NULL; - p = strappend(prefix, lookahead ? draw_special_char(DRAW_TREE_VERT) : " "); + p = strappend(prefix, lookahead ? draw_special_char(DRAW_TREE_VERTICAL) : " "); if (!p) return -ENOMEM;