From 9270e2213ece2e31d93722334d9e84d1b55fb854 Mon Sep 17 00:00:00 2001 From: martin Date: Wed, 4 Sep 2024 03:30:00 -0400 Subject: [PATCH] fix format string --- src/core/libraries/gnmdriver/gnmdriver.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/libraries/gnmdriver/gnmdriver.cpp b/src/core/libraries/gnmdriver/gnmdriver.cpp index 26601e63e..caf04a19b 100644 --- a/src/core/libraries/gnmdriver/gnmdriver.cpp +++ b/src/core/libraries/gnmdriver/gnmdriver.cpp @@ -439,7 +439,7 @@ int PS4_SYSV_ABI sceGnmComputeWaitSemaphore() { int PS4_SYSV_ABI sceGnmCreateWorkloadStream(u32* stream, const char* name) { if (name) { - LOG_ERROR(Lib_GnmDriver, "(STUBBED) sceGnmCreateWorkloadStream called with name: %s", name); + LOG_ERROR(Lib_GnmDriver, "(STUBBED) sceGnmCreateWorkloadStream called with name: {}", name); } else { LOG_ERROR(Lib_GnmDriver, "(STUBBED) sceGnmCreateWorkloadStream called with NULL name"); }