From 15442352fd6ae8e55e6adc3496e7021462cefdf3 Mon Sep 17 00:00:00 2001 From: tgsm Date: Fri, 22 Jun 2018 21:52:29 -0400 Subject: [PATCH] Service/SOC: migrate logging macro --- src/core/hle/service/soc_u.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/hle/service/soc_u.cpp b/src/core/hle/service/soc_u.cpp index 0309c51e3..0afd7981d 100644 --- a/src/core/hle/service/soc_u.cpp +++ b/src/core/hle/service/soc_u.cpp @@ -463,7 +463,7 @@ static void Fcntl(Interface* self) { } #endif } else { - LOG_ERROR(Service_SOC, "Unsupported command (%d) in fcntl call", ctr_cmd); + NGLOG_ERROR(Service_SOC, "Unsupported command ({}) in fcntl call", ctr_cmd); posix_ret = TranslateError(EINVAL); // TODO: Find the correct error return; }