mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-23 06:55:13 +01:00
wallet/db_postgres.c: Fix obvious typo in error message.
ChangeLog-None
This commit is contained in:
parent
ba77fce453
commit
d330e6e5b4
1 changed files with 1 additions and 1 deletions
|
@ -264,7 +264,7 @@ static bool db_postgres_vacuum(struct db *db)
|
||||||
|
|
||||||
res = PQexec(db->conn, "VACUUM FULL;");
|
res = PQexec(db->conn, "VACUUM FULL;");
|
||||||
if (PQresultStatus(res) != PGRES_COMMAND_OK) {
|
if (PQresultStatus(res) != PGRES_COMMAND_OK) {
|
||||||
db->error = tal_fmt(db, "BEGIN command failed: %s",
|
db->error = tal_fmt(db, "VACUUM command failed: %s",
|
||||||
PQerrorMessage(db->conn));
|
PQerrorMessage(db->conn));
|
||||||
PQclear(res);
|
PQclear(res);
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Add table
Reference in a new issue