summaryrefslogtreecommitdiff
path: root/usr/src/boot/sys/boot/common/commands.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr/src/boot/sys/boot/common/commands.c')
-rw-r--r--usr/src/boot/sys/boot/common/commands.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/usr/src/boot/sys/boot/common/commands.c b/usr/src/boot/sys/boot/common/commands.c
index cf16d83e8c..65941a2f2b 100644
--- a/usr/src/boot/sys/boot/common/commands.c
+++ b/usr/src/boot/sys/boot/common/commands.c
@@ -509,9 +509,6 @@ command_lsdev(int argc, char *argv[])
pager_open();
for (i = 0; devsw[i] != NULL; i++) {
if (devsw[i]->dv_print != NULL){
- sprintf(line, "%s devices:\n", devsw[i]->dv_name);
- if (pager_output(line))
- break;
if (devsw[i]->dv_print(verbose))
break;
} else {