From: Nick Bowler Date: Thu, 14 Oct 2021 03:27:37 +0000 (-0400) Subject: Fix typo in error message. X-Git-Tag: v1.2~16 X-Git-Url: https://git.draconx.ca/gitweb/cdecl99.git/commitdiff_plain/631a4eac63aff6cc22ef8ec44bf7595af9a05562 Fix typo in error message. --- diff --git a/src/commands.c b/src/commands.c index dea4219..29184d5 100644 --- a/src/commands.c +++ b/src/commands.c @@ -45,7 +45,7 @@ retry: tmp = realloc(buf, rc + 1); if (!tmp) { - print_error("%s", _("failed to allocate memory)")); + print_error("%s", _("failed to allocate memory")); return NULL; }