From 9ef3d8c8f12f09f6c56f3f1f94d769269a2eb046 Mon Sep 17 00:00:00 2001 From: John Tsiombikas Date: Thu, 7 Jun 2018 06:25:22 +0300 Subject: [PATCH] added a bit more space after the PCI enumeration to make output more readable --- src/pci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 1.7.10.4