diff options
author | tcmal <me@aria.rip> | 2024-06-05 20:54:29 +0100 |
---|---|---|
committer | tcmal <me@aria.rip> | 2024-06-05 20:54:29 +0100 |
commit | c6a963cd43cadff083bfdf4454cdef2d8ddd2070 (patch) | |
tree | ed81f4af5eaaf3fd1286f5963104cea7fd8c55da /src/atoms.rs | |
parent | 8b3f379c3b3216485d11787bcd63a56acd51ee58 (diff) |
some cleanup and lints
Diffstat (limited to 'src/atoms.rs')
-rw-r--r-- | src/atoms.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/atoms.rs b/src/atoms.rs index 4dfcf47..5db75da 100644 --- a/src/atoms.rs +++ b/src/atoms.rs @@ -5,7 +5,7 @@ use xcb::Connection; pub struct InternedAtoms {} impl InternedAtoms { - pub fn new_with(conn: &Connection) -> Result<Self> { + pub fn new_with(_conn: &Connection) -> Result<Self> { // TODO: intern atoms // utf8string = XInternAtom(dpy, "UTF8_STRING", False); |