From 59d9a08aeaa9490bd734cc0de180b6a65e952e76 Mon Sep 17 00:00:00 2001 From: Marcel Hlopko Date: Thu, 14 Jan 2016 14:33:33 +0100 Subject: [PATCH] Add missing semicolon --- posts/2015-10-23-printing-to-screen.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posts/2015-10-23-printing-to-screen.md b/posts/2015-10-23-printing-to-screen.md index f746518e..7ef05bfd 100644 --- a/posts/2015-10-23-printing-to-screen.md +++ b/posts/2015-10-23-printing-to-screen.md @@ -186,7 +186,7 @@ pub fn print_something() { column_position: 0, color_code: ColorCode::new(Color::LightGreen, Color::Black), buffer: unsafe { Unique::new(0xb8000 as *mut _) }, - } + }; writer.write_byte(b'H'); }