From 869aab686c22d1150ac790ad1279c83f3d9a638d Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Tue, 14 Jun 2022 22:28:53 +0200 Subject: [PATCH] Cast to proper type --- r5dev/vstdlib/callback.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/r5dev/vstdlib/callback.cpp b/r5dev/vstdlib/callback.cpp index 6c045f5a..43423a08 100644 --- a/r5dev/vstdlib/callback.cpp +++ b/r5dev/vstdlib/callback.cpp @@ -131,7 +131,7 @@ void Host_KickID_f(const CCommand& args) if (bOnlyDigits) { - uint64_t nTargetID = static_cast(std::stoll(args.Arg(1))); + uint64_t nTargetID = static_cast(std::stoll(args.Arg(1))); if (nTargetID > MAX_PLAYERS) // Is it a possible originID? { uint64_t nOriginID = pClient->GetOriginID();