From: Kevin Day Date: Tue, 5 Jan 2021 01:02:36 +0000 (-0600) Subject: Cleanup: fix typo. X-Git-Tag: 0.5.3~134 X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=a96a694660fc34224221238e35d7c862167568d3;p=fll Cleanup: fix typo. --- 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]); }