瀏覽代碼

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;
             self.current_section = unsafe{ &*(next_section_addr as *const ElfSection) };
             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)
+            }
         }
     }
 }