Fix indentation in MachO#mach_data

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
This commit is contained in:
Jack Nagel 2012-06-16 11:11:09 -05:00
parent 7002359f7a
commit 075a59e3f1

View File

@ -50,10 +50,10 @@ module MachO
end
type = case read(4, offset + 12).unpack("N")[0]
when 0x00000002, 0x02000000 then :executable
when 0x00000006, 0x06000000 then :dylib
else :dunno
end
when 0x00000002, 0x02000000 then :executable
when 0x00000006, 0x06000000 then :dylib
else :dunno
end
mach_data << { :arch => arch, :type => type }
end