aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMartin Ridgers <[email protected]>2024-09-17 15:59:15 +0200
committerMartin Ridgers <[email protected]>2024-09-19 15:26:13 +0200
commit096a1995af423783d86194f12c64f904e40bd9c6 (patch)
treecac17c9dc0c3198f6a69ac3f84583ac78d856ec8 /src
parentPoorly cherry-pick (diff)
downloadzen-096a1995af423783d86194f12c64f904e40bd9c6.tar.xz
zen-096a1995af423783d86194f12c64f904e40bd9c6.zip
Reinstate member initialisation that was there originally
Diffstat (limited to 'src')
-rw-r--r--src/zenserver/projectstore/projectstore.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/zenserver/projectstore/projectstore.h b/src/zenserver/projectstore/projectstore.h
index 891821382..273a6d5c4 100644
--- a/src/zenserver/projectstore/projectstore.h
+++ b/src/zenserver/projectstore/projectstore.h
@@ -97,8 +97,8 @@ public:
struct Paging
{
- int32_t Start;
- int32_t Count;
+ int32_t Start = -1;
+ int32_t Count = -1;
};
std::vector<ChunkInfo> GetAllChunksInfo();