summaryrefslogtreecommitdiffstats
path: root/src/config.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.rs')
-rw-r--r--src/config.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/config.rs b/src/config.rs
index 78771cf..c12fc11 100644
--- a/src/config.rs
+++ b/src/config.rs
@@ -32,19 +32,19 @@ impl Config {
}) {
Ok(r) => r,
Err(e) => {
- // Exit code of 1 means failed to compile field_separator regex
+ // Exit code of 2 means failed to compile field_separator regex
match e {
regex::Error::Syntax(e) => {
eprintln!("Syntax error compiling regular expression: {}", e);
- process::exit(1);
+ process::exit(2);
}
regex::Error::CompiledTooBig(e) => {
eprintln!("Compiled regular expression too big: compiled size cannot exceed {} bytes", e);
- process::exit(1);
+ process::exit(2);
}
_ => {
eprintln!("Error compiling regular expression: {}", e);
- process::exit(1);
+ process::exit(2);
}
}
}