You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-shells/bash/files/bash-2.05b-fix-job-warning....

15 lines
341 B

fix obvious error:
common.c:247:5: warning: format '%s' expects a matching 'char *' argument [-Wformat=]
--- a/builtins/common.c
+++ b/builtins/common.c
@@ -244,7 +244,7 @@
char *s;
{
if (s)
- builtin_error ("%s: no job control");
+ builtin_error ("%s: no job control", s);
else
builtin_error ("no job control");
}