remove tailing space

This commit is contained in:
Hung-Chi Su 2015-09-06 23:46:08 +08:00
parent fcb3933bc2
commit 0ca8435c21
1 changed files with 1 additions and 1 deletions

View File

@ -277,7 +277,7 @@ class Elf
# To avoid unicode
binary = File.read(file).force_encoding('binary')
# To fix bugs leading eof, that's why here is a newline ...
elf = ElfParser.read binary + "\n"
elf = ElfParser.read binary + "\n"
# parse information we need
extract_info binary, elf
end