From 0ca8435c2149de40a2129de172ca26f93ceb9b7b Mon Sep 17 00:00:00 2001 From: Hung-Chi Su Date: Sun, 6 Sep 2015 23:46:08 +0800 Subject: [PATCH] remove tailing space --- lib/elf.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/elf.rb b/lib/elf.rb index b4ff4a5..16fc2f7 100644 --- a/lib/elf.rb +++ b/lib/elf.rb @@ -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