From: Robert Pengelly Date: Mon, 13 Oct 2025 01:23:54 +0000 (+0100) Subject: Fixed type X-Git-Url: https://git.candlhat.org/?a=commitdiff_plain;h=f7ea3f9b4e18729fb883e6a3ec645f37be6fc1c3;p=sar.git Fixed type --- diff --git a/delete.c b/delete.c index 1a2a334..fdf6cd2 100644 --- a/delete.c +++ b/delete.c @@ -21,7 +21,7 @@ void delete (FILE *arfp, const char *fname) { fclose (tfp); - report_at (program_name, 0, REPORT_ERROR, "failed whist writing ar header"); + report_at (program_name, 0, REPORT_ERROR, "failed whilst writing ar header"); return; } @@ -170,7 +170,7 @@ void delete (FILE *arfp, const char *fname) { free (contents); fclose (tfp); - report_at (program_name, 0, REPORT_ERROR, "failed whist writing %s", state->outfile); + report_at (program_name, 0, REPORT_ERROR, "failed whilst writing %s", state->outfile); exit (EXIT_FAILURE); } diff --git a/ranlib.c b/ranlib.c index 0a54095..ce3aaa1 100644 --- a/ranlib.c +++ b/ranlib.c @@ -745,7 +745,7 @@ void ranlib (FILE *arfp) { fclose (tfp); - report_at (program_name, 0, REPORT_ERROR, "failed whist writing ar header"); + report_at (program_name, 0, REPORT_ERROR, "failed whilst writing ar header"); return; } @@ -959,7 +959,7 @@ void ranlib (FILE *arfp) { free (contents); fclose (tfp); - report_at (program_name, 0, REPORT_ERROR, "failed whist writing %s", state->outfile); + report_at (program_name, 0, REPORT_ERROR, "failed whilst writing %s", state->outfile); exit (EXIT_FAILURE); } diff --git a/replace.c b/replace.c index ac89d3f..f222154 100644 --- a/replace.c +++ b/replace.c @@ -21,7 +21,7 @@ void replace (FILE *arfp, const char *fname) { fclose (tfp); - report_at (program_name, 0, REPORT_ERROR, "failed whist writing ar header"); + report_at (program_name, 0, REPORT_ERROR, "failed whilst writing ar header"); return; } @@ -180,7 +180,7 @@ void replace (FILE *arfp, const char *fname) { free (contents); fclose (tfp); - report_at (program_name, 0, REPORT_ERROR, "failed whist writing %s", state->outfile); + report_at (program_name, 0, REPORT_ERROR, "failed whilst writing %s", state->outfile); exit (EXIT_FAILURE); }