Fix error message. (#1527)

This commit is contained in:
petevine 2016-07-02 07:58:32 +02:00 committed by Arkadiy Paronyan
parent fa73ae17d9
commit 316fae2cc4
1 changed files with 1 additions and 1 deletions

View File

@ -348,7 +348,7 @@ impl Configuration {
client_config.db_compaction = match self.args.flag_db_compaction.as_str() {
"ssd" => DatabaseCompactionProfile::Default,
"hdd" => DatabaseCompactionProfile::HDD,
_ => { die!("Invalid compaction profile given (--db-compaction argument), expected hdd/default."); }
_ => { die!("Invalid compaction profile given (--db-compaction argument), expected hdd/ssd (default)."); }
};
if self.args.flag_jitvm {