aboutsummaryrefslogtreecommitdiff
path: root/src/zenserver/projectstore
diff options
context:
space:
mode:
authorDmytro Ivanov <[email protected]>2024-09-27 14:07:17 +0200
committerDmytro Ivanov <[email protected]>2024-10-02 15:46:07 +0200
commitac5e18320323310f816fe8df0f46ebd7effcecd9 (patch)
tree227d589b96adb2bb66f1d6488f5388d074e820c6 /src/zenserver/projectstore
parent5.5.8 (diff)
downloadzen-di/add_cmake_dev.tar.xz
zen-di/add_cmake_dev.zip
add cmake build config to be able to use cliondi/add_cmake_dev
Diffstat (limited to 'src/zenserver/projectstore')
-rw-r--r--src/zenserver/projectstore/httpprojectstore.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/zenserver/projectstore/httpprojectstore.cpp b/src/zenserver/projectstore/httpprojectstore.cpp
index cffd2569f..a72aa627d 100644
--- a/src/zenserver/projectstore/httpprojectstore.cpp
+++ b/src/zenserver/projectstore/httpprojectstore.cpp
@@ -1482,14 +1482,14 @@ HttpProjectService::HandleOpLogEntriesRequest(HttpRouterRequest& Req)
ProjectStore::Oplog::Paging EntryPaging;
if (std::string_view Param = Params.GetValue("start"); !Param.empty())
{
- if (auto Value = ParseInt<int32>(Param))
+ if (auto Value = ParseInt<int32_t>(Param))
{
EntryPaging.Start = *Value;
}
}
if (std::string_view Param = Params.GetValue("count"); !Param.empty())
{
- if (auto Value = ParseInt<int32>(Param))
+ if (auto Value = ParseInt<int32_t>(Param))
{
EntryPaging.Count = *Value;
}