diff options
| author | Martin Ridgers <[email protected]> | 2022-01-10 12:13:39 +0100 |
|---|---|---|
| committer | Martin Ridgers <[email protected]> | 2022-01-10 13:22:28 +0100 |
| commit | 72b340008dc12a818f05c7050e5fdcd1966427d9 (patch) | |
| tree | 9e93098be05cb41eb9c9f758d133c9cc8d5f200d | |
| parent | Converted use of _format UDL to fmt::format (diff) | |
| download | zen-72b340008dc12a818f05c7050e5fdcd1966427d9.tar.xz zen-72b340008dc12a818f05c7050e5fdcd1966427d9.zip | |
Fixed fmt::format() undefined-user-type error
| -rw-r--r-- | zenstore/cas.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zenstore/cas.cpp b/zenstore/cas.cpp index 1fd01ff0c..7b58111db 100644 --- a/zenstore/cas.cpp +++ b/zenstore/cas.cpp @@ -201,7 +201,7 @@ CasImpl::OpenOrCreateManifest() } else { - ZEN_ERROR("Store manifest validation failed: {:#x}, will generate new manifest to recover", ValidationResult); + ZEN_ERROR("Store manifest validation failed: {:#x}, will generate new manifest to recover", uint32_t(ValidationResult)); } if (ManifestIsOk) |