Deleted Added
full compact
29c29
< __FBSDID("$FreeBSD: stable/11/sys/boot/efi/loader/main.c 318480 2017-05-18 18:39:23Z markj $");
---
> __FBSDID("$FreeBSD: stable/11/sys/boot/efi/loader/main.c 328889 2018-02-05 17:01:18Z kevans $");
505a506
> char line[80];
537c538
< printf("%23s %12s %12s %8s %4s\n",
---
> snprintf(line, sizeof(line), "%23s %12s %12s %8s %4s\n",
538a540,544
> pager_open();
> if (pager_output(line)) {
> pager_close();
> return (CMD_OK);
> }
543,544c549,550
< (uintmax_t)p->PhysicalStart, (uintmax_t)p->VirtualStart,
< (uintmax_t)p->NumberOfPages);
---
> (uintmax_t)p->PhysicalStart, (uintmax_t)p->VirtualStart,
> (uintmax_t)p->NumberOfPages);
561c567,568
< printf("\n");
---
> if (pager_output("\n"))
> break;
563a571
> pager_close();
584a593
> char line[80];
587c596
< printf("NumberOfTableEntries=%lu\n",
---
> snprintf(line, sizeof(line), "NumberOfTableEntries=%lu\n",
588a598,603
> pager_open();
> if (pager_output(line)) {
> pager_close();
> return (CMD_OK);
> }
>
614c629,632
< printf(" at %p\n", ST->ConfigurationTable[i].VendorTable);
---
> snprintf(line, sizeof(line), " at %p\n",
> ST->ConfigurationTable[i].VendorTable);
> if (pager_output(line))
> break;
616a635
> pager_close();