소스 검색

Fix whitespace in src/elf_sections.rs

Calvin Lee 8 년 전
부모
커밋
00aeab2469
1개의 변경된 파일5개의 추가작업 그리고 5개의 파일을 삭제
  1. 5 5
      src/elf_sections.rs

+ 5 - 5
src/elf_sections.rs

@@ -37,11 +37,11 @@ impl Iterator for ElfSectionIter {
             let next_section_addr = (self.current_section as *const _ as u32) + self.entry_size;
             let next_section_addr = (self.current_section as *const _ as u32) + self.entry_size;
             self.current_section = unsafe{ &*(next_section_addr as *const ElfSection) };
             self.current_section = unsafe{ &*(next_section_addr as *const ElfSection) };
             self.remaining_sections -= 1;
             self.remaining_sections -= 1;
-			if section.typ == ElfSectionType::Unused as u32 {
-				self.next()
-			} else {
-	            Some(section)
-			}
+            if section.typ == ElfSectionType::Unused as u32 {
+                self.next()
+            } else {
+                Some(section)
+            }
         }
         }
     }
     }
 }
 }