소스 검색

Small fix

luojia65 3 년 전
부모
커밋
0fab905f40
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      rustsbi/src/privileged.rs

+ 1 - 1
rustsbi/src/privileged.rs

@@ -34,7 +34,7 @@ pub unsafe fn enter_privileged(mhartid: usize, opaque: usize) -> ! {
         #[cfg(not(any(target_arch = "riscv32", target_arch = "riscv64")))]
         () => {
             drop(mhartid);
-            drop(dtb_pa);
+            drop(opaque);
             unimplemented!("not RISC-V instruction set architecture")
         }
     }