summaryrefslogtreecommitdiff
path: root/Source/Core/Common/MemoryUtil.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2020-10-23 14:41:30 -0400
committerLioncash <mathew1800@gmail.com>2020-10-23 14:58:03 -0400
commit4e8df93f4179a684b507d9c712b7e8121fc83119 (patch)
tree2d4257714fcad53325789389e22ff35087a7c28c /Source/Core/Common/MemoryUtil.cpp
parent4f5c8bb42ae617a5c2823277a4a9ced1df2be445 (diff)
Common: Migrate logging to fmt
Continues the migration of our code over to the fmt logger.
Diffstat (limited to 'Source/Core/Common/MemoryUtil.cpp')
-rw-r--r--Source/Core/Common/MemoryUtil.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/MemoryUtil.cpp b/Source/Core/Common/MemoryUtil.cpp
index bc2becfa54..909c12fa90 100644
--- a/Source/Core/Common/MemoryUtil.cpp
+++ b/Source/Core/Common/MemoryUtil.cpp
@@ -75,7 +75,7 @@ void* AllocateAlignedMemory(size_t size, size_t alignment)
#else
void* ptr = nullptr;
if (posix_memalign(&ptr, alignment, size) != 0)
- ERROR_LOG(MEMMAP, "Failed to allocate aligned memory");
+ ERROR_LOG_FMT(MEMMAP, "Failed to allocate aligned memory");
#endif
if (ptr == nullptr)