diff options
| author | Jack Nagel | 2012-06-16 11:11:09 -0500 |
|---|---|---|
| committer | Jack Nagel | 2012-06-16 11:11:09 -0500 |
| commit | 075a59e3f11d71afc43b223436a593e31640770e (patch) | |
| tree | 24d72451f1f615f1d0bd00dbb5aceff6ce95c526 /Library | |
| parent | 7002359f7a39351a6e6805815d19aac301982a7c (diff) | |
| download | brew-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.rb | 8 |
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 |
