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.hh | |
parent | e51a757720ade58e48128730134400cf12f54851 (diff) |
Error classname as name
Diffstat (limited to 'src/libstore/sqlite.hh')
-rw-r--r-- | src/libstore/sqlite.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/sqlite.hh b/src/libstore/sqlite.hh index fd04c9b07..ce27033c9 100644 --- a/src/libstore/sqlite.hh +++ b/src/libstore/sqlite.hh @@ -99,7 +99,7 @@ MakeError(SQLiteBusy, SQLiteError); [[noreturn]] void throwSQLiteError(sqlite3 * db, const FormatOrString & fs); -void handleSQLiteBusy(const SQLiteBusy & e); +void handleSQLiteBusy(SQLiteBusy & e); /* Convenience function for retrying a SQLite transaction when the database is busy. */ |