aboutsummaryrefslogtreecommitdiff
path: root/src/zenserver/projectstore
diff options
context:
space:
mode:
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;
}