From 7bc283129831e68569981dd64899bd0d3f8fd6ce Mon Sep 17 00:00:00 2001 From: Yan Hilorioze Date: Wed, 9 Jul 2025 14:38:37 +0100 Subject: [PATCH] fix: correct `volumeId` logging in RevEmu authorization --- reunion/src/reunion_authorizers.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reunion/src/reunion_authorizers.cpp b/reunion/src/reunion_authorizers.cpp index 557740a..8f85d23 100644 --- a/reunion/src/reunion_authorizers.cpp +++ b/reunion/src/reunion_authorizers.cpp @@ -99,7 +99,7 @@ void RevEmuFinishAuthorization(authdata_t* authdata, const char* authStr, size_t authdata->steamId = revHash(authdata->authKey) << 1; if (authStr == (char *)&volumeId) - LCPrintf(false, "RevEmu auth key: '%u' steamid: %u\n", (uint32_t)authStr, authdata->steamId); + LCPrintf(false, "RevEmu auth key: '%u' steamid: %u\n", volumeId, authdata->steamId); else LCPrintf(false, "RevEmu auth key: '%s' steamid: %u\n", authStr, authdata->steamId); }