From 1669990f235886c977040d952c603833a7264414 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20Vis=C3=A9e?= Date: Fri, 29 Dec 2017 22:46:58 +0100 Subject: [PATCH] Fix host reference --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 48cea6d..b2a49fb 100644 --- a/src/main.rs +++ b/src/main.rs @@ -88,7 +88,7 @@ fn start(host: &str, count: usize, image_path: &str) { let size = (1920u32, 1080u32); // Create a new pixelflut canvas - let canvas = PixCanvas::new(HOST, image_path, size, count); + let canvas = PixCanvas::new(host, image_path, size, count); // Sleep this thread thread::sleep(Duration::new(10000000, 0));