From 075a59e3f11d71afc43b223436a593e31640770e Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Sat, 16 Jun 2012 11:11:09 -0500 Subject: [PATCH] Fix indentation in MachO#mach_data Signed-off-by: Jack Nagel --- Library/Homebrew/mach.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Library/Homebrew/mach.rb b/Library/Homebrew/mach.rb index 75e99a7749..ebbc4b57eb 100644 --- a/Library/Homebrew/mach.rb +++ b/Library/Homebrew/mach.rb @@ -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