From a96a694660fc34224221238e35d7c862167568d3 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Mon, 4 Jan 2021 19:02:36 -0600 Subject: [PATCH] Cleanup: fix typo. --- level_2/fll_error/c/error.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/level_2/fll_error/c/error.c b/level_2/fll_error/c/error.c index 226bcc3..345c0b1 100644 --- a/level_2/fll_error/c/error.c +++ b/level_2/fll_error/c/error.c @@ -36,7 +36,7 @@ extern "C" { if (status == F_access_group) { if (error.verbosity != f_console_verbosity_quiet) { fprintf(error.to.stream, "%c", f_string_eol_s[0]); - fprintf(error.to.stream, "%s%sCurrrent user is not allowed to use the given group while trying to %s %s '", error.context.before->string, error.prefix, operation, type_name); + fprintf(error.to.stream, "%s%sCurrent user is not allowed to use the given group while trying to %s %s '", error.context.before->string, error.prefix, operation, type_name); fprintf(error.to.stream, "%s%s%s%s", error.context.after->string, error.notable.before->string, name, error.notable.after->string); fprintf(error.to.stream, "%s'.%s%c", error.context.before->string, error.context.after->string, f_string_eol_s[0]); } @@ -47,7 +47,7 @@ extern "C" { if (status == F_access_owner) { if (error.verbosity != f_console_verbosity_quiet) { fprintf(error.to.stream, "%c", f_string_eol_s[0]); - fprintf(error.to.stream, "%s%sCurrrent user is not allowed to use the given owner while trying to %s %s '", error.context.before->string, error.prefix, operation, type_name); + fprintf(error.to.stream, "%s%sCurrent user is not allowed to use the given owner while trying to %s %s '", error.context.before->string, error.prefix, operation, type_name); fprintf(error.to.stream, "%s%s%s%s", error.context.after->string, error.notable.before->string, name, error.notable.after->string); fprintf(error.to.stream, "%s'.%s%c", error.context.before->string, error.context.after->string, f_string_eol_s[0]); } -- 1.8.3.1