summaryrefslogtreecommitdiff
path: root/bootloader/main-pp.c
diff options
context:
space:
mode:
Diffstat (limited to 'bootloader/main-pp.c')
-rw-r--r--bootloader/main-pp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/bootloader/main-pp.c b/bootloader/main-pp.c
index 37f42eda43..f0e9e7cdf3 100644
--- a/bootloader/main-pp.c
+++ b/bootloader/main-pp.c
@@ -540,7 +540,7 @@ void* main(void)
540 } 540 }
541 printf(buf); 541 printf(buf);
542 } else { 542 } else {
543 error(EATA, i); 543 error(EATA, i, true);
544 } 544 }
545#endif 545#endif
546 546
@@ -548,7 +548,7 @@ void* main(void)
548 num_partitions = disk_mount_all(); 548 num_partitions = disk_mount_all();
549 if (num_partitions<=0) 549 if (num_partitions<=0)
550 { 550 {
551 error(EDISK,num_partitions); 551 error(EDISK,num_partitions, true);
552 } 552 }
553 553
554 /* Just list the first 2 partitions since we don't have any devices yet 554 /* Just list the first 2 partitions since we don't have any devices yet
@@ -643,7 +643,7 @@ void* main(void)
643 return (void*)loadbuffer; 643 return (void*)loadbuffer;
644 } 644 }
645 645
646 error(0, 0); 646 error(0, 0, true);
647 } 647 }
648 return (void*)loadbuffer; 648 return (void*)loadbuffer;
649} 649}