diff options
author | Ben Burdette <bburdette@gmail.com> | 2020-04-28 21:06:08 -0600 |
---|---|---|
committer | Ben Burdette <bburdette@gmail.com> | 2020-04-28 21:06:08 -0600 |
commit | 22e6490311015e076a09d5608834bd0dec1d7020 (patch) | |
tree | 5aff3f1fcadac73e929c9dd13599c92dc000b487 /src/libstore/sqlite.cc | |
parent | e51a757720ade58e48128730134400cf12f54851 (diff) |
Error classname as name
Diffstat (limited to 'src/libstore/sqlite.cc')
-rw-r--r-- | src/libstore/sqlite.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/sqlite.cc b/src/libstore/sqlite.cc index 3407e5826..a72cd5d88 100644 --- a/src/libstore/sqlite.cc +++ b/src/libstore/sqlite.cc @@ -196,7 +196,7 @@ SQLiteTxn::~SQLiteTxn() } } -void handleSQLiteBusy(const SQLiteBusy & e) +void handleSQLiteBusy(SQLiteBusy & e) { static std::atomic<time_t> lastWarned{0}; |