pahole: Fix error message when --header couldn't be read

Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
Arnaldo Carvalho de Melo 2021-04-14 12:32:58 -03:00
parent 7eea706c14
commit 7c60b0443c
1 changed files with 1 additions and 1 deletions

View File

@ -1880,7 +1880,7 @@ static int prototype__stdio_fprintf_value(struct prototype *prototype, struct ty
if (type__instance_read_once(header, stdin) < 0) {
int err = --errno;
fprintf(stderr, "pahole: --header (%s) type not be read\n", conf.header_type);
fprintf(stderr, "pahole: --header (%s) type couldn't be read\n", conf.header_type);
return err;
}