8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 18:43:02 +01:00
This commit is contained in:
Dmitry Yemanov 2023-08-17 15:12:54 +03:00
parent a41b6109d4
commit 37762dcf5f
2 changed files with 2 additions and 2 deletions

View File

@ -101,7 +101,7 @@ namespace
TempSpace& tempSpace;
};
const ULONG HEADER_SIZE = FB_ALIGN(sizeof(MonitoringHeader), FB_ALIGNMENT);
const ULONG HEADER_SIZE = (ULONG) FB_ALIGN(sizeof(MonitoringHeader), FB_ALIGNMENT);
} // namespace

View File

@ -260,7 +260,7 @@ class MonitoringData final : public Firebird::PermanentStorage, public Firebird:
inline ULONG getBlockLength() const
{
return FB_ALIGN(sizeof(Element) + length, FB_ALIGNMENT);
return (ULONG) FB_ALIGN(sizeof(Element) + length, FB_ALIGNMENT);
}
};