added a bit more space after the PCI enumeration to make output more
authorJohn Tsiombikas <nuclear@mutantstargoat.com>
Thu, 7 Jun 2018 03:25:22 +0000 (06:25 +0300)
committerJohn Tsiombikas <nuclear@mutantstargoat.com>
Thu, 7 Jun 2018 03:25:22 +0000 (06:25 +0300)
readable

src/pci.c

index 7ebb3c5..0813ba7 100644 (file)
--- 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)