diff options
author | Till Hoeppner | 2015-06-09 00:18:31 +0200 |
---|---|---|
committer | Till Hoeppner | 2015-06-09 00:18:31 +0200 |
commit | 9c63c4b89ea0fd889f7f0fd1da71684511e6620e (patch) | |
tree | b50c0598f3aae17f2ab6e8ffad9ef0ba21d6838f /src/format/mod.rs | |
parent | cd182daf35eae3739511f3751843ad01f0d489b3 (diff) | |
download | ilc-9c63c4b89ea0fd889f7f0fd1da71684511e6620e.tar.gz ilc-9c63c4b89ea0fd889f7f0fd1da71684511e6620e.tar.xz ilc-9c63c4b89ea0fd889f7f0fd1da71684511e6620e.zip |
Add basic frequency counter binary
Diffstat (limited to 'src/format/mod.rs')
-rw-r--r-- | src/format/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/format/mod.rs b/src/format/mod.rs index 2c271bd..0716dba 100644 --- a/src/format/mod.rs +++ b/src/format/mod.rs @@ -2,7 +2,7 @@ //! As the source format may not provide the same information as the //! target format, all formats must allow for omittable information. -use std::io::{ self, BufRead, Write }; +use std::io::{ BufRead, Write }; use log::Event; |