diff options
author | Ben Burdette <bburdette@gmail.com> | 2020-07-03 07:57:36 -0600 |
---|---|---|
committer | Ben Burdette <bburdette@gmail.com> | 2020-07-03 07:57:36 -0600 |
commit | b29a4ea1dc650725d7489ecc9dd54ed37446d20f (patch) | |
tree | 72acb28cf81132b2da3d5c8c6dc88cbeeff84692 /src/libutil | |
parent | 5818271c6e617f5c956ba74d19611d4c6e76bfe8 (diff) | |
parent | c3c7aedbb5ac869b7c454e90683f77b9c527a75a (diff) |
Merge branch 'master' into add-trace
Diffstat (limited to 'src/libutil')
-rw-r--r-- | src/libutil/hash.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libutil/hash.cc b/src/libutil/hash.cc index 01fae3044..1a3e7c5d8 100644 --- a/src/libutil/hash.cc +++ b/src/libutil/hash.cc @@ -370,7 +370,7 @@ string printHashType(HashType ht) default: // illegal hash type enum value internally, as opposed to external input // which should be validated with nice error message. - abort(); + assert(false); } } |