aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2012-06-16 11:11:09 -0500
committerJack Nagel2012-06-16 11:11:09 -0500
commit075a59e3f11d71afc43b223436a593e31640770e (patch)
tree24d72451f1f615f1d0bd00dbb5aceff6ce95c526 /Library
parent7002359f7a39351a6e6805815d19aac301982a7c (diff)
downloadbrew-075a59e3f11d71afc43b223436a593e31640770e.tar.bz2
Fix indentation in MachO#mach_data
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/mach.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/Library/Homebrew/mach.rb b/Library/Homebrew/mach.rb
index 75e99a774..ebbc4b57e 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