Skip to content

Commit b285437

Browse files
rddunlaptorvalds
authored andcommitted
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/[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]>
1 parent 560a870 commit b285437

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/check_extable.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
obj=$1
66

7-
file ${obj} | grep -q ELF || (echo "${obj} is not and ELF file." 1>&2 ; exit 0)
7+
file ${obj} | grep -q ELF || (echo "${obj} is not an ELF file." 1>&2 ; exit 0)
88

99
# Bail out early if there isn't an __ex_table section in this object file.
1010
objdump -hj __ex_table ${obj} 2> /dev/null > /dev/null

0 commit comments

Comments
 (0)