aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz>2023-10-27 15:24:20 +0200
committerMarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz>2023-10-30 14:59:17 +0100
commitfa56067a8f56701cbda95595592e74934af7d1cd (patch)
tree7c9ba2cad13d4e4b61661404e4c8da7075b058f4 /src
parent6391644b660740f479b915a9b34b0f287baaaac4 (diff)
refactor: Fix bugprone-string-constructor warning
Diffstat (limited to 'src')
-rw-r--r--src/.clang-tidy1
-rw-r--r--src/wallet/db.cpp4
2 files changed, 3 insertions, 2 deletions
diff --git a/src/.clang-tidy b/src/.clang-tidy
index 8b78f8faaa..bfaa5ab8e7 100644
--- a/src/.clang-tidy
+++ b/src/.clang-tidy
@@ -2,6 +2,7 @@ Checks: '
-*,
bitcoin-*,
bugprone-argument-comment,
+bugprone-string-constructor,
bugprone-use-after-move,
bugprone-lambda-function-name,
misc-unused-using-decls,
diff --git a/src/wallet/db.cpp b/src/wallet/db.cpp
index 0ee39d2b5a..ea06767e9b 100644
--- a/src/wallet/db.cpp
+++ b/src/wallet/db.cpp
@@ -129,9 +129,9 @@ bool IsSQLiteFile(const fs::path& path)
file.close();
- // Check the magic, see https://sqlite.org/fileformat2.html
+ // Check the magic, see https://sqlite.org/fileformat.html
std::string magic_str(magic, 16);
- if (magic_str != std::string("SQLite format 3", 16)) {
+ if (magic_str != std::string{"SQLite format 3\000", 16}) {
return false;
}