Skip to content

Commit 4feba57

Browse files
committed
Fix spacing on boot for the last time
1 parent 6842b1a commit 4feba57

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/init/init.c

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,29 +33,29 @@ void init() {
3333
bprint("Loading ");
3434
itoa(RAMDISK_DATA_SIZE_BYTES, buf, 10);
3535
bprint(buf);
36-
bprint("B RAM Disk...");
36+
bprint("B RAM Disk... ");
3737

3838
ramdisk_init(); // Start the RAM Disk
3939

4040
// Success " Done!\n"
41-
success(" Done!\n");
41+
success("Done!\n");
4242

43-
bprint("Looking for IDE master..."); // Print out "Looking for IDE master... " on both screen and serial
43+
bprint("Looking for IDE master... "); // Print out "Looking for IDE master... " on both screen and serial
4444
// Check if the IDE driver finds a drive, if so run this loop
4545
if (ide_detect()) {
4646
// Success " Found!\n"
47-
success(" Found!\n");
47+
success("Found!\n");
4848

4949
// Print "Loading IDE Drive..." on screen and serial
50-
bprint("Loading IDE Drive...");
50+
bprint("Loading IDE Drive... ");
5151

5252
// Check if the IDE drive has been loaded successfully, if so then run this loop
5353
if (ide_init()) {
5454
// Success " Done!\n"
55-
success(" Done!\n");
55+
success("Done!\n");
5656
} else { // If IDE driver failed, run this loop
5757
// Error " Failed!\n"
58-
error(" Failed!\n");
58+
error("Failed!\n");
5959
}
6060
} else { // If IDE driver can not find drive, run this loop
6161
// Error " Not Found!\n"

0 commit comments

Comments
 (0)