From 4e8df93f4179a684b507d9c712b7e8121fc83119 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Fri, 23 Oct 2020 14:41:30 -0400 Subject: Common: Migrate logging to fmt Continues the migration of our code over to the fmt logger. --- Source/Core/Common/MemoryUtil.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/Core/Common/MemoryUtil.cpp') 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) -- cgit v1.2.3