mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-17 06:47:49 +00:00
Merge pull request #107 from jonfk/master
Added missing `unsafe` in printing-to-screen post
This commit is contained in:
@@ -326,7 +326,7 @@ use spin::Mutex;
|
|||||||
pub static WRITER: Mutex<Writer> = Mutex::new(Writer {
|
pub static WRITER: Mutex<Writer> = Mutex::new(Writer {
|
||||||
column_position: 0,
|
column_position: 0,
|
||||||
color_code: ColorCode::new(Color::LightGreen, Color::Black),
|
color_code: ColorCode::new(Color::LightGreen, Color::Black),
|
||||||
buffer: Unique::new(0xb8000 as *mut _),
|
buffer: unsafe { Unique::new(0xb8000 as *mut _) },
|
||||||
});
|
});
|
||||||
```
|
```
|
||||||
[Mutex::new] is a const function, too, so it can be used in statics.
|
[Mutex::new] is a const function, too, so it can be used in statics.
|
||||||
|
|||||||
Reference in New Issue
Block a user