rpn(1): make error messages consistent with other tools
This commit is contained in:
parent
cf1d16f860
commit
3e6dc5cc46
@ -52,8 +52,10 @@ use std::{
|
||||
|
||||
use CalcType::*;
|
||||
|
||||
extern crate strerror;
|
||||
extern crate sysexits;
|
||||
|
||||
use strerror::c_error;
|
||||
use sysexits::EX_DATAERR;
|
||||
|
||||
#[derive(Clone, PartialEq, PartialOrd, Debug)]
|
||||
@ -172,7 +174,7 @@ fn eval(
|
||||
};
|
||||
} else {
|
||||
return Err(EvaluationError {
|
||||
message: format!("{}: Unexpected operation.", op),
|
||||
message: format!("{}: Unexpected operation", op),
|
||||
code: EX_DATAERR,
|
||||
})
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user