about summary refs log tree commit diff
path: root/src/display/draw_box.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/display/draw_box.rs')
-rw-r--r--src/display/draw_box.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/display/draw_box.rs b/src/display/draw_box.rs
index 3b2b4aaf4f1d..1b3958cefca8 100644
--- a/src/display/draw_box.rs
+++ b/src/display/draw_box.rs
@@ -140,7 +140,7 @@ impl Stylable for Line {
 }
 
 impl Stylable for Neighbors<Option<BoxStyle>> {
-    fn style(&self, style: BoxStyle) -> char {
+    fn style(&self, _style: BoxStyle) -> char {
         use BoxStyle::*;
         match (self.left, self.right, self.top, self.bottom) {
             (None, None, None, None) => BOX,