From 4e51675621cf8d31b68b1239812baf633ec21467 Mon Sep 17 00:00:00 2001 From: Robert Pengelly Date: Mon, 13 Oct 2025 02:24:52 +0100 Subject: [PATCH] Fixed typo --- pe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pe.c b/pe.c index bff2767..ecf5748 100644 --- a/pe.c +++ b/pe.c @@ -847,7 +847,7 @@ static unsigned long write_data (FILE *outfile, void *data, unsigned long data_s if (fwrite (data, data_size, 1, outfile) != 1) { - report_at (program_name, 0, REPORT_ERROR, "failed whist writing data to '%s'", output_implib_filename); + report_at (program_name, 0, REPORT_ERROR, "failed whilst writing data to '%s'", output_implib_filename); return 0; } -- 2.34.1