diff --git a/biosdump/biosdump.c b/biosdump/biosdump.c index 6bfc2dd..c8cda88 100644 --- a/biosdump/biosdump.c +++ b/biosdump/biosdump.c @@ -26,7 +26,7 @@ dump_range(uint32_t base, uint32_t size, const char *id) FILE *f; /* Output the range being dumped. */ - printf("Dumping %s BIOS range (%08X-%08X)...", id, base, base + size - 1); + printf("Dumping %s BIOS range (%08X-%08X)... ", id, base, base + size - 1); /* Generate file name. */ sprintf(fn, "%08X.DMP", base); @@ -34,20 +34,20 @@ dump_range(uint32_t base, uint32_t size, const char *id) /* Open the dump file. */ f = fopen(fn, "wb"); if (!f) { - printf(" FAILURE\n"); + printf("FAILURE\n"); return 1; } /* Write the dump. */ if (fwrite((char *) base, 1, size, f) != size) { - printf(" FAILURE\n"); + printf("FAILURE\n"); fclose(f); return 2; } /* Finish the dump. */ fclose(f); - printf(" OK\n"); + printf("OK\n"); return 0; }