From: John Tsiombikas Date: Thu, 7 Jun 2018 03:25:22 +0000 (+0300) Subject: added a bit more space after the PCI enumeration to make output more X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?p=bootcensus;a=commitdiff_plain;h=9ef3d8c8f12f09f6c56f3f1f94d769269a2eb046 added a bit more space after the PCI enumeration to make output more readable --- diff --git a/src/pci.c b/src/pci.c index 7ebb3c5..0813ba7 100644 --- a/src/pci.c +++ b/src/pci.c @@ -103,7 +103,7 @@ void init_pci(void) for(i=0; i<256; i++) { count += enum_bus(i); } - printf("found %d PCI devices\n", count); + printf("found %d PCI devices\n\n", count); } static int enum_bus(int busid)