From 28d1de1de05b30c8ed7e31ece85c86ea60774460 Mon Sep 17 00:00:00 2001 From: Ben Eills Date: Wed, 13 Jul 2016 15:51:41 +0200 Subject: [PATCH] Fix type synonym relaiance which breaks some rusts --- src/install/install.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/install/install.rs b/src/install/install.rs index 4db8f63db..7aa97ae3d 100644 --- a/src/install/install.rs +++ b/src/install/install.rs @@ -29,7 +29,7 @@ const DEFAULT_MODE: libc::mode_t = 755; pub struct Behaviour { main_function: MainFunction, - specified_mode: Option, + specified_mode: Option, suffix: String, verbose: bool }