diff options
author | Randy Dunlap <rdunlap@infradead.org> | 2021-08-20 16:21:32 +1000 |
---|---|---|
committer | Stephen Rothwell <sfr@canb.auug.org.au> | 2021-08-20 18:31:06 +1000 |
commit | b913f4ffe9295a2170647bc4b7380a73f61074e3 (patch) | |
tree | 478e736fa21da3af347113e0a8bfec82afa3b3a2 | |
parent | 3a720931b8be4c402c486742dfd19d7df25843c8 (diff) | |
download | linux-next-b913f4ffe9295a2170647bc4b7380a73f61074e3.tar.gz |
scripts: check_extable: fix typo in user error message
Fix typo ("and" should be "an") in an error message.
Link: https://lkml.kernel.org/r/20210727002943.29774-1-rdunlap@infradead.org
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Quentin Casasnovas <quentin.casasnovas@oracle.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
-rwxr-xr-x | scripts/check_extable.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/check_extable.sh b/scripts/check_extable.sh index 93af93c7b346..4b380564cf74 100755 --- a/scripts/check_extable.sh +++ b/scripts/check_extable.sh @@ -4,7 +4,7 @@ obj=$1 -file ${obj} | grep -q ELF || (echo "${obj} is not and ELF file." 1>&2 ; exit 0) +file ${obj} | grep -q ELF || (echo "${obj} is not an ELF file." 1>&2 ; exit 0) # Bail out early if there isn't an __ex_table section in this object file. objdump -hj __ex_table ${obj} 2> /dev/null > /dev/null |