From 20e6e9dca84f1879cc2b83bb35dfff9d60b8f238 Mon Sep 17 00:00:00 2001 From: OBattler Date: Thu, 30 Jun 2022 03:12:18 +0200 Subject: [PATCH] Changes that don't practically change anything, in order to trigger a new compile. --- biosdump/biosdump.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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; }