Version bump, various fixes

This commit is contained in:
Luke D. Jones
2021-08-02 10:50:17 +12:00
parent 9e55c0b2ca
commit 8f5717def8
15 changed files with 39 additions and 24 deletions

View File

@@ -81,7 +81,7 @@ pub struct LedProxy<'a>(DaemonProxy<'a>);
impl<'a> LedProxy<'a> {
#[inline]
pub fn new(conn: &Connection) -> Result<Self> {
Ok(LedProxy(DaemonProxy::new(&conn)?))
Ok(LedProxy(DaemonProxy::new(conn)?))
}
#[inline]