diff options
author | John Baldwin <jhb@FreeBSD.org> | 2001-11-04 02:58:39 +0000 |
---|---|---|
committer | John Baldwin <jhb@FreeBSD.org> | 2001-11-04 02:58:39 +0000 |
commit | f0699bb775d8f72d698c9205b0540a55b9ac152d (patch) | |
tree | 8f72418b82f0ab1017ffae92318c4977457e3339 | |
parent | b456f7e6b3fd7b2b7f7a2e9b521047ee22456be0 (diff) |
Notes
-rw-r--r-- | sys/boot/common/commands.c | 2 |
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); |