]> git.draconx.ca Git - cdecl99.git/commitdiff
Fix typo in error message.
authorNick Bowler <nbowler@draconx.ca>
Thu, 14 Oct 2021 03:27:37 +0000 (23:27 -0400)
committerNick Bowler <nbowler@draconx.ca>
Thu, 14 Oct 2021 03:27:37 +0000 (23:27 -0400)
src/commands.c

index dea4219837e624c5f83237ec46efc6fb41d1c061..29184d5ac4641b37119d64e851bdfca39c36f842 100644 (file)
@@ -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;
                }