From bed57b03ce01d1a975401afcb41f5b2f6066b597 Mon Sep 17 00:00:00 2001 From: Wesley Aptekar-Cassels Date: Sat, 18 Nov 2017 03:22:57 -0500 Subject: [PATCH] Add missing semicolon in double-fault post (#366) --- blog/content/posts/10-double-faults/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog/content/posts/10-double-faults/index.md b/blog/content/posts/10-double-faults/index.md index 951fbdfa..c357c680 100644 --- a/blog/content/posts/10-double-faults/index.md +++ b/blog/content/posts/10-double-faults/index.md @@ -70,7 +70,7 @@ lazy_static! { let mut idt = idt::Idt::new(); idt.breakpoint.set_handler_fn(breakpoint_handler); - idt.double_fault.set_handler_fn(double_fault_handler) + idt.double_fault.set_handler_fn(double_fault_handler); idt };