aboutsummaryrefslogtreecommitdiff
path: root/zencore/iobuffer.cpp
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2021-09-15 14:57:39 +0200
committerStefan Boberg <[email protected]>2021-09-15 14:57:39 +0200
commit07180ad240b52699a00f4edc38881bf905eabc52 (patch)
tree1ff2e2e3593fa86275da181e289c752e1749fc21 /zencore/iobuffer.cpp
parentUnused variable warning fix (diff)
downloadzen-07180ad240b52699a00f4edc38881bf905eabc52.tar.xz
zen-07180ad240b52699a00f4edc38881bf905eabc52.zip
Fixed up invalid fmt formatting strings
Diffstat (limited to 'zencore/iobuffer.cpp')
-rw-r--r--zencore/iobuffer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/zencore/iobuffer.cpp b/zencore/iobuffer.cpp
index 14ba77ea6..758cf539c 100644
--- a/zencore/iobuffer.cpp
+++ b/zencore/iobuffer.cpp
@@ -220,7 +220,7 @@ IoBufferExtendedCore::Materialize() const
{
throw std::system_error(
std::error_code(::GetLastError(), std::system_category()),
- "MapViewOfFile failed (offset {#x}, size {#x}) file: '{}'"_format(MapOffset, MapSize, zen::PathFromHandle(m_FileHandle)));
+ "MapViewOfFile failed (offset {:#x}, size {:#x}) file: '{}'"_format(MapOffset, MapSize, zen::PathFromHandle(m_FileHandle)));
}
m_MappedPointer = MappedBase;