]> Git Repo - J-linux.git/commitdiff
scripts: check_extable: fix typo in user error message
authorRandy Dunlap <[email protected]>
Wed, 8 Sep 2021 03:00:59 +0000 (20:00 -0700)
committerLinus Torvalds <[email protected]>
Wed, 8 Sep 2021 18:50:28 +0000 (11:50 -0700)
Fix typo ("and" should be "an") in an error message.

Link: https://lkml.kernel.org/r/[email protected]
Signed-off-by: Randy Dunlap <[email protected]>
Cc: Quentin Casasnovas <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
scripts/check_extable.sh

index 93af93c7b3468b4bfd46dfe2c6ed59fdb369f164..4b380564cf7420931fdbd7724cdb26383522253c 100755 (executable)
@@ -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
This page took 0.050663 seconds and 4 git commands to generate.