aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorenen92 <enen92@users.noreply.github.com>2020-11-27 19:39:39 +0000
committerGitHub <noreply@github.com>2020-11-27 19:39:39 +0000
commit2dca05a1876409ac599678f91618e660543f221e (patch)
tree77d0712db603279d17ec2c54ee35c5e725c81e6c
parent22a7f1463cd563f418973f9aed788f093110020d (diff)
parent18ef2e7ab0fee8eef3e6f9adf53d894a2a05d8ed (diff)
Merge pull request #18874 from thexai/uwp-version-fix
[UWP] Fix typo in kernelVersionFull string
-rw-r--r--xbmc/utils/SystemInfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/utils/SystemInfo.cpp b/xbmc/utils/SystemInfo.cpp
index 10bcc90e6d..4a80960f70 100644
--- a/xbmc/utils/SystemInfo.cpp
+++ b/xbmc/utils/SystemInfo.cpp
@@ -554,7 +554,7 @@ std::string CSysInfo::GetKernelVersionFull(void)
unsigned long long v4 = (v & 0x000000000000FFFFL);
kernelVersionFull = StringUtils::Format("%lld.%lld.%lld", v1, v2, v3);
if (v4)
- kernelVersionFull += StringUtils::Format(".ll%d", v4);
+ kernelVersionFull += StringUtils::Format(".%lld", v4);
#elif defined(TARGET_POSIX)
struct utsname un;