Skip to content
This repository has been archived by the owner on Dec 19, 2022. It is now read-only.

Commit

Permalink
Fixes small bug, some exports were missing
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexandre Stein committed Feb 18, 2021
1 parent 69d6b78 commit 9b0ca38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/csv.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use std::io::Write;
use super::objects;

static OUTPUT_FILE: &'static str = "fs-scan_output.csv";
static FILE_FIRST_LINE: &'static str = "Path,Files,Directories,4K,4K_16K,16K_64K,64K_128K,128K_256K,256K_512K,512K_1M,1M_10M,10M_100M,100M_1G,1G";
static FILE_FIRST_LINE: &'static str = "Path,Files,Directories,4K,4K_8K,8K_16K,16K_32K,32K_64K,64K_128K,128K_256K,256K_512K,512K_1M,1M_10M,10M_100M,100M_1G,1G";

pub fn save(res: &objects::Result) {
match check_file() {
Expand Down

0 comments on commit 9b0ca38

Please sign in to comment.