summaryrefslogtreecommitdiff
path: root/src/database/query.cpp
diff options
context:
space:
mode:
authorlouiz’ <louiz@louiz.org>2018-01-28 14:10:14 +0100
committerlouiz’ <louiz@louiz.org>2018-01-28 14:10:14 +0100
commit9bf81a2c04eddabd0f09ea9157e6e7c97bea88f5 (patch)
treea44bc9ca7e53cba40dbcc37a90d2fa79a0171bd5 /src/database/query.cpp
parent6e7ee320bc1256793bc11c4b00a8f4f89f407af4 (diff)
downloadbiboumi-9bf81a2c04eddabd0f09ea9157e6e7c97bea88f5.tar.gz
biboumi-9bf81a2c04eddabd0f09ea9157e6e7c97bea88f5.tar.bz2
biboumi-9bf81a2c04eddabd0f09ea9157e6e7c97bea88f5.tar.xz
biboumi-9bf81a2c04eddabd0f09ea9157e6e7c97bea88f5.zip
This should fix the int conversion warning on 32bits arch
Diffstat (limited to 'src/database/query.cpp')
-rw-r--r--src/database/query.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/database/query.cpp b/src/database/query.cpp
index 4054007..d27dc59 100644
--- a/src/database/query.cpp
+++ b/src/database/query.cpp
@@ -6,7 +6,7 @@ void actual_bind(Statement& statement, const std::string& value, int index)
statement.bind_text(index, value);
}
-void actual_bind(Statement& statement, const std::size_t value, int index)
+void actual_bind(Statement& statement, const std::int64_t value, int index)
{
statement.bind_int64(index, value);
}