summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2001-11-04 02:58:39 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2001-11-04 02:58:39 +0000
commitf0699bb775d8f72d698c9205b0540a55b9ac152d (patch)
tree8f72418b82f0ab1017ffae92318c4977457e3339
parentb456f7e6b3fd7b2b7f7a2e9b521047ee22456be0 (diff)
Notes
-rw-r--r--sys/boot/common/commands.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/boot/common/commands.c b/sys/boot/common/commands.c
index 34b31a272653..75b60bcdaca8 100644
--- a/sys/boot/common/commands.c
+++ b/sys/boot/common/commands.c
@@ -469,7 +469,7 @@ command_lsdev(int argc, char *argv[])
pager_open();
for (i = 0; devsw[i] != NULL; i++) {
if (devsw[i]->dv_print != NULL){
- sprintf(line, "%s @ %p\n", devsw[i]->dv_name, devsw[i]->dv_print);
+ sprintf(line, "%s devices:\n", devsw[i]->dv_name);
if (pager_output(line))
break;
devsw[i]->dv_print(verbose);