diff options
| author | Jack Nagel | 2012-06-16 11:11:09 -0500 |
|---|---|---|
| committer | Jack Nagel | 2012-06-16 11:11:09 -0500 |
| commit | 1354366f4ed21ed714fffbd641a813587b4b4805 (patch) | |
| tree | fd6c7bddbfbab9a3124e6a8bfb18439634c1c1ce /Library | |
| parent | 2fd34b58c00ed6aacb6dacd12a80d1230af1f50c (diff) | |
| download | homebrew-1354366f4ed21ed714fffbd641a813587b4b4805.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 |
