Deleted Added
full compact
29c29
< __FBSDID("$FreeBSD: stable/11/sys/boot/pc98/libpc98/bioscd.c 313355 2017-02-06 22:03:07Z tsoome $");
---
> __FBSDID("$FreeBSD: stable/11/sys/boot/pc98/libpc98/bioscd.c 328889 2018-02-05 17:01:18Z kevans $");
102c102
< static void bc_print(int verbose);
---
> static int bc_print(int verbose);
176c176
< static void
---
> static int
180c180
< int i;
---
> int i, ret = 0;
182c182,188
< pager_open();
---
> if (nbcinfo == 0)
> return (0);
>
> printf("%s devices:", bioscd.dv_name);
> if ((ret = pager_output("\n")) != 0)
> return (ret);
>
186c192
< if (pager_output(line))
---
> if ((ret = pager_output(line)) != 0)
189c195
< pager_close();
---
> return (ret);